mirror of
https://github.com/katanemo/plano.git
synced 2026-05-24 14:05:14 +02:00
23 lines
477 B
TypeScript
23 lines
477 B
TypeScript
|
|
// Components
|
||
|
|
export { Logo } from "./components/Logo";
|
||
|
|
export { Footer } from "./components/Footer";
|
||
|
|
export { Navbar } from "./components/Navbar";
|
||
|
|
|
||
|
|
// UI Components
|
||
|
|
export { Button, buttonVariants } from "./components/ui/button";
|
||
|
|
export {
|
||
|
|
Dialog,
|
||
|
|
DialogClose,
|
||
|
|
DialogContent,
|
||
|
|
DialogDescription,
|
||
|
|
DialogFooter,
|
||
|
|
DialogHeader,
|
||
|
|
DialogOverlay,
|
||
|
|
DialogPortal,
|
||
|
|
DialogTitle,
|
||
|
|
DialogTrigger,
|
||
|
|
} from "./components/ui/dialog";
|
||
|
|
|
||
|
|
// Utils
|
||
|
|
export { cn } from "./lib/utils";
|