Note: We have the exact same installation process as shadcn/ui.
Create a project
Run the init
command to create a new Next.js project or to setup an existing one:
Add components
You can now start adding components to your project.
Import component
import { SwipeRow } from "@/components/ui/swipe-row"
export default function App() {
return (
<div>
<SwipeRow />
</div>
)
}