@manhphi1309/components 1.1.1 → 1.1.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 +10 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,14 +3,23 @@
|
|
|
3
3
|
The unified, complete React UI library. This master-package aggregates all individual components and utilities into a single, easy-to-install dependency.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
|
+
|
|
6
7
|
```bash
|
|
7
8
|
npm install @manhphi1309/components
|
|
8
9
|
```
|
|
9
10
|
|
|
10
11
|
## Usage
|
|
12
|
+
|
|
11
13
|
Instead of installing individual packages, you can import everything directly from this meta-package:
|
|
14
|
+
|
|
12
15
|
```tsx
|
|
13
|
-
import {
|
|
16
|
+
import {
|
|
17
|
+
Button,
|
|
18
|
+
Input,
|
|
19
|
+
DatePicker,
|
|
20
|
+
Card,
|
|
21
|
+
Tooltip,
|
|
22
|
+
} from "@manhphi1309/components"
|
|
14
23
|
```
|
|
15
24
|
|
|
16
25
|
## Included Components & Subcomponents
|