LumiSign / ui /src /main.tsx
anthony01's picture
feat: add UI components including Skeleton, Slider, Sonner, Switch, Table, Tabs, Textarea, Toggle Group, Toggle, Tooltip, and utility hooks
263280b
Raw
History Blame Contribute Delete
183 Bytes
import { createRoot } from "react-dom/client";
import App from "./app/App.tsx";
import "./styles/index.css";
createRoot(document.getElementById("root")!).render(<App />);