From 0493906c78187eececfde39c83fe48a3983db647 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Thu, 8 Jun 2023 22:33:58 +0200 Subject: [PATCH] Integrated the Home page to the App.jsx --- webui/src/App.jsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/webui/src/App.jsx b/webui/src/App.jsx index 3ffecd0..7f82a77 100644 --- a/webui/src/App.jsx +++ b/webui/src/App.jsx @@ -1,7 +1,9 @@ +import Home from "./pages/Home"; + const App = () => { return ( <> - + ) }