Back to Shadcn Ui

Remix

apps/v4/content/docs/installation/remix.mdx

latest818 B
Original Source
<Callout>

Note: This guide is for Remix. For React Router, see the React Router guide.

</Callout> <Steps>

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
import { Button } from "~/components/ui/button"

export default function Home() {
  return (
    <div>
      <Button>Click me</Button>
    </div>
  )
}
</Steps>