Skip to content

Commit

Permalink
Revert "testing issues with gh pages"
Browse files Browse the repository at this point in the history
This reverts commit 7215a64.
  • Loading branch information
stone-w4tch3r committed Jun 24, 2024
1 parent 7215a64 commit c9fae1c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,13 @@ import Dashboard from "./dashboard_example/Dashboard.tsx";
import LandingPage from "./landing_example/LandingPage.tsx";

const App: React.FC = () => {
return <h1>Hello World</h1>;
return <Router>
<Routes>
<Route path="/" element={<ChartPage/>}/>
<Route path="/dashboard" element={<Dashboard/>}/>
<Route path="/landing" element={<LandingPage/>}/>
</Routes>
</Router>;
};

export default App;

0 comments on commit c9fae1c

Please sign in to comment.