15 lines
274 B
TypeScript
15 lines
274 B
TypeScript
import { Button } from "@/components/ui/button";
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<div>
|
|
ADMIN HOME
|
|
<div>
|
|
<Button className="bg-primary text-primary-foreground">
|
|
Themed Button
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|