add alisurvey main page
This commit is contained in:
15
products/react-apps/alisurvey/src/main.tsx
Normal file
15
products/react-apps/alisurvey/src/main.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import { StrictMode } from "react";
|
||||
import { createRoot } from "react-dom/client";
|
||||
import { BrowserRouter } from "react-router-dom";
|
||||
import { Toaster } from 'sonner';
|
||||
import App from "./App.tsx";
|
||||
import "./index.css";
|
||||
|
||||
createRoot(document.getElementById("root")!).render(
|
||||
<StrictMode>
|
||||
<BrowserRouter>
|
||||
<App />
|
||||
<Toaster />
|
||||
</BrowserRouter>
|
||||
</StrictMode>
|
||||
);
|
||||
Reference in New Issue
Block a user