fix(docs): update monorepo docs (#6647)

This pull request includes a small change to the `templates/monorepo-next/README.md` file. The change corrects the import path for the `Button` component to reflect the correct directory structure.

* [`templates/monorepo-next/README.md`](diffhunk://#diff-4f9dc7da681b34ccf99bccdcb804625f61e47afc70a483548b3ae093b564e072L30-R30): Updated the import path for the `Button` component to `@workspace/ui/components/button`.
This commit is contained in:
Pavi
2025-02-23 15:35:26 +08:00
committed by GitHub
parent 779517a1d4
commit 57d15bb2d5

View File

@@ -27,5 +27,5 @@ Your `tailwind.config.ts` and `globals.css` are already set up to use the compon
To use the components in your app, import them from the `ui` package.
```tsx
import { Button } from "@workspace/ui/components/ui/button"
import { Button } from "@workspace/ui/components/button"
```