export default function HelloWorld() {
return (
<div className="flex flex-col">
<h1 className="text-2xl font-bold dark:text-white">Hello World</h1>
<p className="text-sm text-gray-500 dark:text-gray-400">This is a test</p>
</div>
);
}
npx shadcn@latest add @billingsdk/hello-worldimport { HelloWorld } from "@/components/hello-world"<HelloWorld />