From de3c34845b26e7afa1eed6a99f8440ca33575e43 Mon Sep 17 00:00:00 2001 From: Guten Ye Date: Fri, 4 Aug 2023 02:27:39 +0800 Subject: [PATCH] docs(www): update import in remix installation (#974) Co-authored-by: shadcn --- apps/www/content/docs/installation/remix.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/www/content/docs/installation/remix.mdx b/apps/www/content/docs/installation/remix.mdx index 1468fce579..71235ba825 100644 --- a/apps/www/content/docs/installation/remix.mdx +++ b/apps/www/content/docs/installation/remix.mdx @@ -103,7 +103,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/button" +import { Button } from "~/components/ui/button" export default function Home() { return (