@yanolja-next/next-hub-ui
v0.0.2
Published
Next Cloud Platform UI Component Library
Downloads
409
Keywords
Readme
gdrive_sync: true gdrive_pdf_name: "Next Hub UI"
@yanolja-next/next-hub-ui
Shared UI component library for Next Cloud Platform, built with shadcn/ui.
Usage
First, import the CSS in your app's entry point:
import '@yanolja-next/next-hub-ui/index.css';Then you're ready to use the components:
import { Button, Card } from '@yanolja-next/next-hub-ui';
const MyPage = () => {
return (
<Card>
<Button>Click me</Button>
</Card>
);
};