Command Palette

Search for a command to run...

4Twitter
Installation
How to install dependencies and structure your app.

Create a project

Run the init command to create a new Next.js project or to setup an existing one:

pnpm dlx shadcn@latest init

Add components

You can now start adding components to your project.

pnpm dlx shadcn@latest add "https://moleculeui.design/r/swipe-row"

Import component

import { SwipeRow } from "@/components/ui/swipe-row"
 
export default function App() {
  return (
    <div>
      <SwipeRow />
    </div>
  )
}