From 45f78bd2cb9bbef15fae24d4925da095da8c1e05 Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Wed, 5 Mar 2025 09:34:55 +0100 Subject: Initial react migration --- morsehero/src/App.tsx | 39 +++++++++++---------------------------- 1 file changed, 11 insertions(+), 28 deletions(-) (limited to 'morsehero/src/App.tsx') diff --git a/morsehero/src/App.tsx b/morsehero/src/App.tsx index 3d7ded3..1512713 100644 --- a/morsehero/src/App.tsx +++ b/morsehero/src/App.tsx @@ -1,34 +1,17 @@ -import { useState } from 'react' -import reactLogo from './assets/react.svg' -import viteLogo from '/vite.svg' -import './App.css' +import { BrowserRouter as Router, Routes, Route } from 'react-router' +import HomePage from './pages/HomePage' +import ChartPage from './pages/chart/ChartPage' +import './base.css' +import './styles.css' function App() { - const [count, setCount] = useState(0) - return ( - <> -
- - Vite logo - - - React logo - -
-

Vite + React

-
- -

- Edit src/App.tsx and save to test HMR -

-
-

- Click on the Vite and React logos to learn more -

- + + + } /> + } /> + + ) } -- cgit v1.3.1