@grahlnn/comps 0.1.0

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 ADDED
@@ -0,0 +1,25 @@
1
+ # @grahlnn/comps
2
+
3
+ React component library.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install @grahlnn/comps react
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```tsx
14
+ import { Torph } from "@grahlnn/comps";
15
+
16
+ export function Example() {
17
+ return <Torph text="Loading..." />;
18
+ }
19
+ ```
20
+
21
+ ## Build
22
+
23
+ ```bash
24
+ bun run build
25
+ ```
@@ -0,0 +1 @@
1
+ export * from "./torph";