mirror of
https://github.com/Xevion/grain.git
synced 2025-12-06 01:15:10 -06:00
11 lines
269 B
TypeScript
11 lines
269 B
TypeScript
import React from "react";
|
|
import ReactDOM from "react-dom/client";
|
|
import App from "@/components/App";
|
|
import "@/styles/index.scss";
|
|
|
|
ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
|
|
<React.StrictMode>
|
|
<App />
|
|
</React.StrictMode>
|
|
);
|