aboutsummaryrefslogtreecommitdiff
path: root/src/components/Highlight.js
diff options
context:
space:
mode:
author安竹洋平 <61961825+yasutakeyohei@users.noreply.github.com>2024-01-31 00:36:03 +0900
committer安竹洋平 <61961825+yasutakeyohei@users.noreply.github.com>2024-01-31 00:36:03 +0900
commit361f2b90070d99ce4676f4aed088e83f31eac325 (patch)
tree212ad97416b3a7fdf921cb487dc0488b78572c69 /src/components/Highlight.js
parentf83947b5b9751fd0fa04e5cf0e67e4033ea40772 (diff)
initial commit
Diffstat (limited to 'src/components/Highlight.js')
-rw-r--r--src/components/Highlight.js10
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