feat: add routing (#4)

This commit is contained in:
2024-10-27 16:07:03 +03:00
parent 855887079b
commit 693a7c5420
9 changed files with 98 additions and 6 deletions

View File

@@ -1,9 +1,13 @@
import React from 'react';
import React from "react";
import { BrowserRouter } from "react-router-dom";
import Routers from "./routes";
const App = () => {
return (
<h1>Сухой мастер </h1>
<BrowserRouter>
<Routers></Routers>
</BrowserRouter>
);
};
export default App;
export default App;