A simple hello world component
export function HelloWorld() { return <h1 className="text-2xl font-bold">Hello World</h1> }
npx shadcn@latest add @chisom-ui/hello-world
import { HelloWorld } from "@/components/hello-world"
<HelloWorld />