mirror of
https://github.com/foomo/ui.git
synced 2025-10-16 12:45:34 +00:00
13 lines
300 B
TypeScript
13 lines
300 B
TypeScript
import { StrictMode } from "react";
|
|
import { createRoot } from "react-dom/client";
|
|
import "./index.css";
|
|
import { Button } from "@/components/button";
|
|
|
|
createRoot(document.getElementById("root")!).render(
|
|
<StrictMode>
|
|
<div className="p-8">
|
|
<Button>Click me</Button>
|
|
</div>
|
|
</StrictMode>,
|
|
);
|