Skip to content

Commit

Permalink
routes
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrieljablonski committed May 13, 2022
1 parent 7a3d850 commit bf12424
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/routes/index.ts

This file was deleted.

16 changes: 16 additions & 0 deletions src/routes/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import React from 'react';
import { BrowserRouter, Routes, Route } from 'react-router-dom';

import { Home } from 'pages';

const AppRoutes: React.FC = () => {
return (
<BrowserRouter>
<Routes>
<Route path="/" element={<Home />} />
</Routes>
</BrowserRouter>
);
};

export default AppRoutes;

0 comments on commit bf12424

Please sign in to comment.