mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-20 06:31:13 -05:00
12 lines
347 B
TypeScript
12 lines
347 B
TypeScript
import React from "react";
|
|
import { createRoot } from "react-dom/client";
|
|
import App from "./App.tsx";
|
|
import "./index.css";
|
|
import { ThemeProvider } from "@/components/theme/ThemeProvider";
|
|
|
|
createRoot(document.getElementById("root")!).render(
|
|
<ThemeProvider defaultTheme="dark" storageKey="thrillwiki-theme">
|
|
<App />
|
|
</ThemeProvider>
|
|
);
|