@oryxqa/ui 1.0.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,21 @@
1
+ # React + TypeScript + Vite + shadcn/ui
2
+
3
+ This is a template for a new Vite project with React, TypeScript, and shadcn/ui.
4
+
5
+ ## Adding components
6
+
7
+ To add components to your app, run the following command:
8
+
9
+ ```bash
10
+ npx shadcn@latest add button
11
+ ```
12
+
13
+ This will place the ui components in the `src/components` directory.
14
+
15
+ ## Using components
16
+
17
+ To use the components in your app, import them as follows:
18
+
19
+ ```tsx
20
+ import { Button } from "@/components/primitives/button"
21
+ ```