diff options
Diffstat (limited to 'src/components/Highlight.js')
-rw-r--r-- | src/components/Highlight.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/components/Highlight.js b/src/components/Highlight.js new file mode 100644 index 00000000..427b8029 --- /dev/null +++ b/src/components/Highlight.js @@ -0,0 +1,10 @@ +import React from 'react'; +import styles from './Highlight.module.css'; + +export default function Highlight({children}) { + return( + <span className={styles.span}> + {children} + </span> + ); +}
\ No newline at end of file |