test-stpr-ui-kit 0.4.1 → 0.4.2
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 +1 -17
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,23 +16,7 @@ $ npm install --save test-stpr-ui-kit
|
|
|
16
16
|
|
|
17
17
|
# Getting set up
|
|
18
18
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
1. Import styles in main react file (main.jsx or app.jsx) provded by **test-stpr-ui-kit**
|
|
22
|
-
|
|
23
|
-
```jsx
|
|
24
|
-
import "test-stpr-ui-kit/styles";
|
|
25
|
-
|
|
26
|
-
createRoot(document.getElementById("root")).render(
|
|
27
|
-
<StrictMode>
|
|
28
|
-
<App/>
|
|
29
|
-
</StrictMode>
|
|
30
|
-
);
|
|
31
|
-
```
|
|
32
|
-
|
|
33
|
-
`import "test-stpr-ui-kit/styles"` is a temporary solution needed to style components.
|
|
34
|
-
|
|
35
|
-
2. Now you can start using components like so!:
|
|
19
|
+
Just use the components like this:
|
|
36
20
|
|
|
37
21
|
```jsx
|
|
38
22
|
import { Button } from "test-stpr-ui-kit";
|