--- title: Remix description: Install and configure shadcn/ui for Remix. --- **Note:** This guide is for Remix. For React Router, see the [React Router](/docs/installation/react-router) guide. ### Create project Start by creating a new Remix project using `create-remix`: ```bash npx create-remix@latest my-app ``` ### Run the CLI Run the `shadcn` init command to set up your project: ```bash npx shadcn@latest init ``` ### That's it You can now start adding components to your project. ```bash npx shadcn@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 title="app/routes/index.tsx" import { Button } from "~/components/ui/button" export default function Home() { return (
) } ```