File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,20 @@ function App(){
30
30
return < Circle _hover= {{ borderBottom: ' solid 1px' }} / > ;
31
31
}
32
32
```
33
+ ``` js
34
+
35
+ import { css } from ' ./panda/css' ;
36
+
37
+ const styles = css ({ textAlign: ' left' });
38
+ ```
39
+ ``` js
40
+
41
+ import { Box } from ' ./panda/jsx' ;
42
+
43
+ function App (){
44
+ return < Box textAlign= {" right" } / > ;
45
+ }
46
+ ```
33
47
34
48
✔️ Examples of ** correct** code:
35
49
``` js
@@ -53,6 +67,20 @@ function App(){
53
67
return < Circle _hover= {{ borderBlockEnd: ' solid 1px' }} / > ;
54
68
}
55
69
```
70
+ ``` js
71
+
72
+ import { css } from ' ./panda/css' ;
73
+
74
+ const styles = css ({ textAlign: ' start' });
75
+ ```
76
+ ``` js
77
+
78
+ import { Box } from ' ./panda/jsx' ;
79
+
80
+ function App (){
81
+ return < Box textAlign= {" end" } / > ;
82
+ }
83
+ ```
56
84
57
85
## Resources
58
86
You can’t perform that action at this time.
0 commit comments