blob: 427b8029d387b48a4fd5181e14fb8b1a0603c751 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import React from 'react';
import styles from './Highlight.module.css';
export default function Highlight({children}) {
return(
<span className={styles.span}>
{children}
</span>
);
}
|