Init(Core): add project to new repo

This commit is contained in:
2026-04-24 18:56:52 +03:30
commit b75246ac0f
195 changed files with 10747 additions and 0 deletions

19
src/App.js Normal file
View File

@@ -0,0 +1,19 @@
import './index.css';
import Login from "./views/Auth/Login";
import {BrowserRouter, Route, Routes} from "react-router-dom";
import PanelLayout from "./Layouts/PanelLayout";
function App() {
return (
<BrowserRouter>
<Routes>
<Route exact path="/" element={(<Login/>)}/>
<Route path='/panel/*' element={<PanelLayout/>}/>
{/*<Route path="*" element={(<NotFound/>)}/>*/}
</Routes>
</BrowserRouter>
);
}
export default App;