From 57d15bb2d5d5ea3407815b287c68dcdabc9f1d0a Mon Sep 17 00:00:00 2001 From: Pavi <13897936+pavinthan@users.noreply.github.com> Date: Sun, 23 Feb 2025 15:35:26 +0800 Subject: [PATCH] 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`. --- templates/monorepo-next/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/monorepo-next/README.md b/templates/monorepo-next/README.md index b907dd6a3..226e3c417 100644 --- a/templates/monorepo-next/README.md +++ b/templates/monorepo-next/README.md @@ -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" ```