@kubit-ui-web/react-components 1.0.0-beta.1 → 1.0.0-beta.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 +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,13 +17,13 @@ To install the package, run the following command:
|
|
|
17
17
|
### npm
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
npm install @kubit-ui/react-components
|
|
20
|
+
npm install @kubit-ui-web/react-components
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
### yarn
|
|
24
24
|
|
|
25
25
|
```bash
|
|
26
|
-
yarn add @kubit-ui/react-components
|
|
26
|
+
yarn add @kubit-ui-web/react-components
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
This will install the package and its dependencies. Now you can import the components and use them in your application.
|
|
@@ -33,7 +33,7 @@ This will install the package and its dependencies. Now you can import the compo
|
|
|
33
33
|
To use the components, import them from the package and use them in your application.
|
|
34
34
|
|
|
35
35
|
```tsx
|
|
36
|
-
import { Button, KubitProvider } from '@kubit-ui/react-components';
|
|
36
|
+
import { Button, KubitProvider } from '@kubit-ui-web/react-components';
|
|
37
37
|
import React from 'react';
|
|
38
38
|
|
|
39
39
|
const App = () => {
|