@loword/loword-design-system 0.0.1 → 0.0.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 +14 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,8 +1,19 @@
|
|
|
1
|
-
# @loword/
|
|
1
|
+
# @loword/loword-design-system
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
loword design system React 컴포넌트 패키지입니다.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## 설치
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @loword/loword-design-system
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
```ts
|
|
12
|
+
import { Button } from '@loword/loword-design-system';
|
|
13
|
+
import '@loword/loword-design-system/styles.css'; // 스타일 1회 import
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## 빠른 시작 (개발)
|
|
6
17
|
|
|
7
18
|
```bash
|
|
8
19
|
pnpm install # 의존성 설치
|