mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-15 18:30:39 +09:00
14 lines
327 B
TypeScript
14 lines
327 B
TypeScript
|
|
import { StrictMode } from "react";
|
||
|
|
import { createRoot } from "react-dom/client";
|
||
|
|
import { BrowserRouter } from "react-router-dom";
|
||
|
|
import { App } from "./App";
|
||
|
|
import "./index.css";
|
||
|
|
|
||
|
|
createRoot(document.getElementById("root")!).render(
|
||
|
|
<StrictMode>
|
||
|
|
<BrowserRouter>
|
||
|
|
<App />
|
||
|
|
</BrowserRouter>
|
||
|
|
</StrictMode>
|
||
|
|
);
|