@esmate/shadcn 3.3.1 → 3.3.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 +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -250,7 +250,8 @@ having to install each dependency individually.
|
|
|
250
250
|
```typescript
|
|
251
251
|
import { useForm } from "@esmate/shadcn/pkgs/react-hook-form";
|
|
252
252
|
import { zodResolver } from "@esmate/shadcn/pkgs/hookform/resolvers";
|
|
253
|
+
import { Accordion } from "@esmate/shadcn/pkgs/radix-ui/react-accordion";
|
|
253
254
|
import { z } from "@esmate/shadcn/pkgs/zod";
|
|
254
255
|
|
|
255
|
-
// You can check src/
|
|
256
|
+
// You can check src/pkgs or dist/pkgs to find more modules
|
|
256
257
|
```
|