aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNidboj132 <lol2s@vp.pl>2023-02-26 15:52:05 +0100
committerGitHub <noreply@github.com>2023-02-26 15:52:05 +0100
commitc86a3e89f4a3606adb848a48241a89e3d25fe348 (patch)
treee55f4665939a7d0f893d67a26f69f77d1f6105c8
parentDelete react.svg (diff)
downloadlphub-c86a3e89f4a3606adb848a48241a89e3d25fe348.tar.gz
lphub-c86a3e89f4a3606adb848a48241a89e3d25fe348.tar.bz2
lphub-c86a3e89f4a3606adb848a48241a89e3d25fe348.zip
Delete App.tsx
-rw-r--r--frontend/src/App.tsx34
1 files changed, 0 insertions, 34 deletions
diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx
deleted file mode 100644
index cd20136..0000000
--- a/frontend/src/App.tsx
+++ /dev/null
@@ -1,34 +0,0 @@
1import { useState } from 'react'
2import reactLogo from './assets/react.svg'
3import './App.css'
4
5function App() {
6 const [count, setCount] = useState(0)
7
8 return (
9 <div className="App">
10 <div>
11 <a href="https://vitejs.dev" target="_blank">
12 <img src="/vite.svg" className="logo" alt="Vite logo" />
13 </a>
14 <a href="https://reactjs.org" target="_blank">
15 <img src={reactLogo} className="logo react" alt="React logo" />
16 </a>
17 </div>
18 <h1>Vite + React</h1>
19 <div className="card">
20 <button onClick={() => setCount((count) => count + 1)}>
21 count is {count}
22 </button>
23 <p>
24 Edit <code>src/App.tsx</code> and save to test HMR
25 </p>
26 </div>
27 <p className="read-the-docs">
28 Click on the Vite and React logos to learn more
29 </p>
30 </div>
31 )
32}
33
34export default App