@@ -56,7 +56,7 @@ We also provide an `EmptyList` component that you can use to display a message w
5656** Use Case**
5757
5858``` tsx
59- import * as React from ' react' ;
59+ import React from ' react' ;
6060import { List , EmptyList , Text } from ' @/ui' ;
6161
6262const MyComponent = () => {
@@ -85,7 +85,7 @@ The `cssInterop` function from `nativewind` is used to apply styling and, in thi
8585** Use Case**
8686
8787``` tsx
88- import * as React from ' react' ;
88+ import React from ' react' ;
8989import { Image } from ' @/ui' ;
9090
9191const MyComponent = () => {
@@ -119,7 +119,7 @@ You can also use the `t` snippet to create a simple Text with a default `classNa
119119** Use Case**
120120
121121``` tsx
122- import * as React from ' react' ;
122+ import React from ' react' ;
123123import { Text , View } from ' react-native' ;
124124
125125const MyComponent = () => {
@@ -183,7 +183,7 @@ Read more about Handling Forms [here](../forms/).
183183** Use Case**
184184
185185``` tsx
186- import * as React from ' react' ;
186+ import React from ' react' ;
187187import { Input , View } from ' @/ui' ;
188188
189189const MyComponent = () => {
@@ -214,7 +214,7 @@ Based on your needs, you can use the `Modal` if you don't have a fixed height fo
214214** Use Case**
215215
216216``` tsx
217- import * as React from ' react' ;
217+ import React from ' react' ;
218218import { Modal , useModal , View , Button , Text } from ' @/ui' ;
219219
220220const MyComponent = () => {
@@ -256,7 +256,7 @@ Feel free to update the component implementation to fit your need and as you kee
256256** Use Case**
257257
258258``` tsx
259- import * as React from ' react' ;
259+ import React from ' react' ;
260260
261261import type { Option } from ' @/ui' ;
262262import { SelectInput , View } from ' @/ui' ;
0 commit comments