FastViewer / frontend /src /main.jsx
StarrySkyWorld's picture
Init
8820bb8
raw
history blame contribute delete
277 Bytes
import React from "react";
import { createRoot } from "react-dom/client";
import "antd/dist/reset.css";
import "./styles.css";
import { App } from "./pages/App.jsx";
createRoot(document.getElementById("root")).render(
<React.StrictMode>
<App />
</React.StrictMode>
);