From 248c17e1f7b095a1e0ed98eb3e3c67bb258971c4 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Thu, 8 Jun 2023 21:53:40 +0200 Subject: [PATCH] Made the App.jsx empty --- webui/src/App.jsx | 36 +++++------------------------------- 1 file changed, 5 insertions(+), 31 deletions(-) diff --git a/webui/src/App.jsx b/webui/src/App.jsx index b8b8473..3ffecd0 100644 --- a/webui/src/App.jsx +++ b/webui/src/App.jsx @@ -1,35 +1,9 @@ -import { useState } from 'react' -import reactLogo from './assets/react.svg' -import viteLogo from '/vite.svg' -import './App.css' +const App = () => { + return ( + <> -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