質問編集履歴

6

2021/03/03 02:20

投稿

guiyouxiaoyu
guiyouxiaoyu

スコア0

test CHANGED
@@ -1 +1 @@
1
- Nextjsでコンポーネントにクラス名を渡す
1
+ Next.jsでコンポーネントにクラス名を渡す
test CHANGED
@@ -24,7 +24,7 @@
24
24
 
25
25
  .red {
26
26
 
27
- color :red;
27
+ color: red;
28
28
 
29
29
  }
30
30
 

5

2021/03/03 02:20

投稿

guiyouxiaoyu
guiyouxiaoyu

スコア0

test CHANGED
File without changes
test CHANGED
@@ -1,6 +1,8 @@
1
- 以下のようなButtonコンポーネントにpropsでを渡したい(<Button color="red">)のですが、button.module.cssで.redにcolor:redを設定しても適用されません。
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

2021/03/03 02:19

投稿

guiyouxiaoyu
guiyouxiaoyu

スコア0

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

2021/03/03 00:54

投稿

guiyouxiaoyu
guiyouxiaoyu

スコア0

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

2021/03/03 00:50

投稿

guiyouxiaoyu
guiyouxiaoyu

スコア0

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.red}
15
+ <button className={styles.color}
16
16
 
17
17
  )
18
18
 

1

2021/03/03 00:47

投稿

guiyouxiaoyu
guiyouxiaoyu

スコア0

test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,4 @@
1
- 以下のようなbuttonコンポーネントにpropsで色を渡したい(<Button color="red">)のですが、cssが適用されません。
1
+ 以下のようなButtonコンポーネントにpropsで色を渡したい(<Button color="red">)のですが、cssが適用されません。
2
2
 
3
3
 
4
4