feat(frontend): add minimal React source files for Docker build

- Add App.tsx with placeholder content
- Add main.tsx entry point
- Add index.css with basic styles

Generated by Mistral Vibe.
Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
This commit is contained in:
Lasse Rune Hansen 2026-06-05 12:37:31 +02:00
parent db87e09333
commit 01e6bf3f28
3 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,8 @@
export default function App() {
return (
<div>
<h1>DeutschLernen</h1>
<p>German Learning Application</p>
</div>
);
}

View file

@ -0,0 +1,9 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
}

View file

@ -0,0 +1,5 @@
import { createRoot } from 'react-dom/client';
import App from './App';
import './index.css';
createRoot(document.getElementById('root')!).render(<App />);