@finmars/ui 1.0.70 → 1.0.71
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 +9 -0
- package/dist/finmars-ui.css +1 -1
- package/dist/finmars-ui.es.js +91 -93
- package/package.json +10 -6
package/README.md
CHANGED
|
@@ -9,6 +9,15 @@ Make sure to install the dependencies:
|
|
|
9
9
|
npm install
|
|
10
10
|
```
|
|
11
11
|
|
|
12
|
+
## Storybook
|
|
13
|
+
To preview and develop UI components using Storybook, run the following command:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm run storybook
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Storybook will be accessible at http://localhost:6006
|
|
20
|
+
|
|
12
21
|
## Development Server
|
|
13
22
|
|
|
14
23
|
Start the development server on http://localhost:3000
|