Hello World Component

PreviousNext

A simple hello world component

Docs
billingsdkblock

Preview

Loading preview…
registry/billingsdk/hello-world.tsx
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>
  );
}

Installation

npx shadcn@latest add @billingsdk/hello-world

Usage

import { HelloWorld } from "@/components/hello-world"
<HelloWorld />