From 0f187f792c264ba3d9e7de62b577fbfea0d86386 Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Wed, 5 Mar 2025 09:22:48 +0100 Subject: Initial vite project --- morsehero/src/App.tsx | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 morsehero/src/App.tsx (limited to 'morsehero/src/App.tsx') diff --git a/morsehero/src/App.tsx b/morsehero/src/App.tsx new file mode 100644 index 0000000..3d7ded3 --- /dev/null +++ b/morsehero/src/App.tsx @@ -0,0 +1,35 @@ +import { useState } from 'react' +import reactLogo from './assets/react.svg' +import viteLogo from '/vite.svg' +import './App.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 +

+ + ) +} + +export default App -- cgit v1.3.1