From 3c8ccbeb654b432f50bdc6a9dea4434b48a3f91f Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Tue, 4 Jul 2023 18:14:48 +0200 Subject: [PATCH] Created the App.jsx --- src/App.jsx | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/App.jsx diff --git a/src/App.jsx b/src/App.jsx new file mode 100644 index 0000000..bd273c6 --- /dev/null +++ b/src/App.jsx @@ -0,0 +1,9 @@ +const App = () => { + return ( + <> +

Work in Progress

+ + ) +} + +export default App