From 7e524324dbc32319ae1a276b9c8d18eab934b199 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sun, 12 Nov 2023 22:08:38 +0100 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..1e0b819 --- /dev/null +++ b/src/App.jsx @@ -0,0 +1,9 @@ +import { useState } from "react"; + +export default () => { + return ( + <> +

Dashboard

+ + ); +} \ No newline at end of file