React Router

Install and configure shadcn/ui for React Router.

Create project

Start by creating a new React Router project using create-react-router:

loading...

Run the CLI

Run the shadcn init command to setup your project:

loading...

You will be asked a few questions to configure components.json.

Which color would you like to use as base color? › Neutral

Ignore them if you want to use Pure UI Design System.

Enter license

Enter your license key to unlock the full features of Pure UI:

Initialize design system

Use Design System to learn and initialize your own design system or start with the default theme:

loading...

Add components

You can now start adding components to your project.

loading...

The command above will add the Button component to your project. You can then import it like this:

app/routes/home.tsximport { Button } from "~/components/ui/button"

import type { Route } from "./+types/home"

export function meta({}: Route.MetaArgs) {
  return [
    { title: "New React Router App" },
    { name: "description", content: "Welcome to React Router!" },
  ]
}

export default function Home() {
  return (
    <div className="flex min-h-svh flex-col items-center justify-center">
      <Button>Click me</Button>
    </div>
  )
}