techfreakworm's picture
feat(web): Vite/React/TS/Tailwind/shadcn scaffold + Studio shell
c736f72 unverified
raw
history blame contribute delete
315 Bytes
import React from "react";
import ReactDOM from "react-dom/client";
import "./styles/index.css";
import App from "./App";
import { applyInitialTheme } from "./lib/theme";
applyInitialTheme();
ReactDOM.createRoot(document.getElementById("root")!).render(
<React.StrictMode>
<App />
</React.StrictMode>,
);