2024-05-18 11:36:13 -05:00
|
|
|
import React from "react";
|
|
|
|
|
import ReactDOM from "react-dom/client";
|
|
|
|
|
import LoginPage from "@/pages/LoginPage.tsx";
|
2024-08-09 06:26:26 -07:00
|
|
|
import "@/api";
|
2024-05-18 11:36:13 -05:00
|
|
|
import "./index.css";
|
|
|
|
|
|
|
|
|
|
ReactDOM.createRoot(document.getElementById("root")!).render(
|
|
|
|
|
<React.StrictMode>
|
|
|
|
|
<LoginPage />
|
|
|
|
|
</React.StrictMode>,
|
|
|
|
|
);
|