nextjs-tailwindcss-headless.../app/page.tsx

13 lines
288 B
TypeScript
Raw Permalink Normal View History

import { Button } from "@/components/ui/button";
2023-08-25 21:53:07 +08:00
import Link from "next/link";
2023-08-25 12:43:48 +08:00
export default function Home() {
2023-09-14 09:21:45 +08:00
return (
<div className="flex-1 flex justify-center items-center">
<Link href={"/components"}>
<Button>components</Button>
</Link>
</div>
);
}