Initial commit - modstagram_panel

This commit is contained in:
root
2026-07-05 14:02:07 +03:30
commit cc1a93e209
86 changed files with 31692 additions and 0 deletions

17
src/App.jsx Normal file
View File

@@ -0,0 +1,17 @@
import { RouterProvider } from "react-router-dom";
import AuthProvider from "./utils/AuthProvider";
import { Toaster } from "react-hot-toast";
import { router } from "./routers/appRoutes";
function App() {
return (
<div className=" lg:block">
<AuthProvider isSignedIn={false}>
<RouterProvider router={router} />
<Toaster />
</AuthProvider>
</div>
);
}
export default App;