mirror of
https://github.com/Nezumi-2711/multitenant-ecommerce.git
synced 2026-09-22 13:38:34 +00:00
10 lines
176 B
TypeScript
10 lines
176 B
TypeScript
import { Button } from "@/components/ui/button";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div>
|
|
<Button variant="elevated">Hello World</Button>
|
|
</div>
|
|
);
|
|
}
|