first commit

This commit is contained in:
Ilias Dzhabbarov
2024-09-07 11:27:38 +03:00
commit 76bbdbfb61
11 changed files with 7941 additions and 0 deletions

15
src/app.tsx Normal file
View File

@@ -0,0 +1,15 @@
import React from 'react';
import { BrowserRouter } from 'react-router-dom';
import { Dashboard } from './dashboard';
const App = () => {
return(
<BrowserRouter>
<Dashboard />
</BrowserRouter>
)
}
export default App;