質問編集履歴
6
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
Nextjsでコンポーネントにクラス名を渡す
|
1
|
+
Next.jsでコンポーネントにクラス名を渡す
|
test
CHANGED
@@ -24,7 +24,7 @@
|
|
24
24
|
|
25
25
|
.red {
|
26
26
|
|
27
|
-
color
|
27
|
+
color: red;
|
28
28
|
|
29
29
|
}
|
30
30
|
|
5
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,6 +1,8 @@
|
|
1
|
-
以下のようなButtonコンポーネントにpropsで
|
1
|
+
以下のようなButtonコンポーネントにpropsでクラス名を渡したい(<Button color="red">)のですが、cssが適用されません。
|
2
2
|
|
3
3
|
|
4
|
+
|
5
|
+
◼️Button.tsx
|
4
6
|
|
5
7
|
import styles from './button.module.css';
|
6
8
|
|
@@ -18,4 +20,14 @@
|
|
18
20
|
|
19
21
|
|
20
22
|
|
23
|
+
◼️button.module.css
|
24
|
+
|
25
|
+
.red {
|
26
|
+
|
27
|
+
color :red;
|
28
|
+
|
29
|
+
}
|
30
|
+
|
31
|
+
|
32
|
+
|
21
33
|
対応方法についてご教示いただければ幸いです。
|
4
test
CHANGED
File without changes
|
test
CHANGED
@@ -12,7 +12,7 @@
|
|
12
12
|
|
13
13
|
export const Button: FC<props> = ({ color }) => (
|
14
14
|
|
15
|
-
<button className={styles.color}
|
15
|
+
<button className={styles.color}ボタン</button>
|
16
16
|
|
17
17
|
)
|
18
18
|
|
3
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
以下のようなButtonコンポーネントにpropsで色を渡したい(<Button color="red">)のですが、css
|
1
|
+
以下のようなButtonコンポーネントにpropsで色を渡したい(<Button color="red">)のですが、button.module.cssで.redにcolor:redを設定しても適用されません。
|
2
2
|
|
3
3
|
|
4
4
|
|
2
test
CHANGED
File without changes
|
test
CHANGED
@@ -12,7 +12,7 @@
|
|
12
12
|
|
13
13
|
export const Button: FC<props> = ({ color }) => (
|
14
14
|
|
15
|
-
<button className={styles.r
|
15
|
+
<button className={styles.color}
|
16
16
|
|
17
17
|
)
|
18
18
|
|
1
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
以下のような
|
1
|
+
以下のようなButtonコンポーネントにpropsで色を渡したい(<Button color="red">)のですが、cssが適用されません。
|
2
2
|
|
3
3
|
|
4
4
|
|