This commit is contained in:
Primakov Alexandr Alexandrovich
2024-10-22 19:30:12 +03:00
commit 580ce0f81d
11 changed files with 7553 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import React from 'react';
import { BrowserRouter, HashRouter } from 'react-router-dom';
import { Dashboard } from './dashboard';
const App = () => {
return (
<BrowserRouter basename='/nav1'>
<Dashboard />
</BrowserRouter>
);
};
export default App;