Created the App.jsx

This commit is contained in:
Mathias Wagner 2023-11-12 22:08:38 +01:00
parent 5e8b17ec21
commit 7e524324db
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

9
src/App.jsx Normal file
View File

@ -0,0 +1,9 @@
import { useState } from "react";
export default () => {
return (
<>
<h2>Dashboard</h2>
</>
);
}