react-ui89 0.7.7 → 0.7.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -2
- package/dist/esm/index.js +98 -35638
- package/dist/esm/index.js.map +1 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -14,13 +14,17 @@ npm install react-ui89
|
|
|
14
14
|
|
|
15
15
|
## Usage
|
|
16
16
|
|
|
17
|
+
To get started, import the CSS file and place a `Ui89Scene` component as the
|
|
18
|
+
root element of your layout.
|
|
19
|
+
|
|
20
|
+
Then, add any other react-ui89 components as needed to create your desired UI.
|
|
21
|
+
|
|
17
22
|
```jsx
|
|
18
|
-
import
|
|
23
|
+
import 'react-ui89/dist/esm/index.css'
|
|
19
24
|
import {
|
|
20
25
|
Ui89Scene,
|
|
21
26
|
Ui89Card,
|
|
22
27
|
Ui89SpaceVertical,
|
|
23
|
-
Ui89Card,
|
|
24
28
|
Ui89Button,
|
|
25
29
|
Ui89TitleBox,
|
|
26
30
|
} from 'react-ui89'
|