diff --git a/src/App.tsx b/src/App.tsx new file mode 100644 index 0000000..4c9b568 --- /dev/null +++ b/src/App.tsx @@ -0,0 +1,20 @@ +import { BrowserRouter, Routes, Route } from "react-router-dom"; +import IndexPage from "@/pages/Index"; +import ArticlePage from "@/pages/Article"; +import CategoryPage from "@/pages/Category"; +import ContributorsPage from "@/pages/Contributors"; + +function App() { + return ( + + + } /> + } /> + } /> + } /> + + + ); +} + +export default App;