mirror of
https://github.com/sp-tarkov/db-website.git
synced 2025-02-08 04:50:46 -05:00
10 lines
225 B
TypeScript
10 lines
225 B
TypeScript
|
import React from "react";
|
||
|
import ReactDOM from "react-dom/client";
|
||
|
import { App } from "@src/App.tsx";
|
||
|
|
||
|
ReactDOM.createRoot(document.getElementById("root")!).render(
|
||
|
<React.StrictMode>
|
||
|
<App />
|
||
|
</React.StrictMode>
|
||
|
);
|