initial commit

This commit is contained in:
christer
2025-09-04 22:28:34 +02:00
commit 75c6b740ec
8 changed files with 936 additions and 0 deletions

22
Frontend/src/App.tsx Normal file
View File

@@ -0,0 +1,22 @@
import type { Component } from "solid-js";
const App: Component = () => {
return (
<div>
<header>
<p>
Edit <code>src/App.tsx</code> and save to reload.
</p>
<a
href="https://github.com/solidjs/solid"
target="_blank"
rel="noopener noreferrer"
>
Learn Solid
</a>
</header>
</div>
);
};
export default App;