質問編集履歴
2
記載ミス
test
CHANGED
File without changes
|
test
CHANGED
@@ -21,3 +21,27 @@
|
|
21
21
|
TypeError: Cannot use 'in' operator to search for 'green' in undefined
|
22
22
|
|
23
23
|
```
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
```
|
28
|
+
|
29
|
+
useVariantColorWarning
|
30
|
+
|
31
|
+
node_modules/@chakra-ui/core/dist/es/utils/index.js:113
|
32
|
+
|
33
|
+
110 | var variantColorIsDefined = variantColor != null;
|
34
|
+
|
35
|
+
111 |
|
36
|
+
|
37
|
+
112 | if (variantColorIsDefined) {
|
38
|
+
|
39
|
+
> 113 | var variantColorExists = variantColor in theme.colors; // If variant color exists in theme object
|
40
|
+
|
41
|
+
| ^ 114 |
|
42
|
+
|
43
|
+
115 | if (!variantColorExists) {
|
44
|
+
|
45
|
+
116 | console.warn("You passed an invalid variantColor to the " + label + " Component. Variant color values must be a color key in the theme object that has '100' - '900' color values. Check http://chakra-ui.com/theme#colors to see possible values");
|
46
|
+
|
47
|
+
```
|
1
質問の解答
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Reactのcssフレームワークであるchakraを使おうと思っています。
|
4
4
|
|
5
|
-
しかし、npm install後すぐに以下のエラーが発生しました。
|
5
|
+
しかし、npm install後すぐにbuttonコンポーネントを描画しようとしたら以下のエラーが発生しました。
|
6
6
|
|
7
7
|
これはバグでしょうか?
|
8
8
|
|