From 05ac71d4b76dc10d56301ce58858fd90eeb1fe82 Mon Sep 17 00:00:00 2001 From: leo Date: Mon, 20 Oct 2025 03:56:20 -0300 Subject: moved from go to react, and added a better css --- web_page/webpage-shorlink/src/App.jsx | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 web_page/webpage-shorlink/src/App.jsx (limited to 'web_page/webpage-shorlink/src/App.jsx') diff --git a/web_page/webpage-shorlink/src/App.jsx b/web_page/webpage-shorlink/src/App.jsx new file mode 100644 index 0000000..f67355a --- /dev/null +++ b/web_page/webpage-shorlink/src/App.jsx @@ -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.jsx and save to test HMR +

+
+

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

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