From 6cf598d47f255658d0ca653fffe4058d59e325d5 Mon Sep 17 00:00:00 2001 From: munan56 Date: Fri, 28 Jul 2023 19:56:19 +0800 Subject: [PATCH] docs(www): update import path next.mdx (#1062) --- apps/www/content/docs/installation/next.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/www/content/docs/installation/next.mdx b/apps/www/content/docs/installation/next.mdx index 0fe520f5f..8cda7fde6 100644 --- a/apps/www/content/docs/installation/next.mdx +++ b/apps/www/content/docs/installation/next.mdx @@ -82,7 +82,7 @@ npx shadcn-ui@latest add button The command above will add the `Button` component to your project. You can then import it like this: ```tsx {1,6} showLineNumbers -import { Button } from "@/components/ui" +import { Button } from "@/components/ui/button" export default function Home() { return (