yuki / src /main.tsx
OhMyDitzzy
anything
6c75f16
raw
history blame contribute delete
235 Bytes
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App";
import './index.css';
ReactDOM.createRoot(document.getElementById("root")!).render(
<React.StrictMode>
<App />
</React.StrictMode>
)