DeutschLernen/german-app-frontend/src/App.tsx
Lasse Rune Hansen 01e6bf3f28 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>
2026-06-05 12:37:31 +02:00

8 lines
141 B
TypeScript

export default function App() {
return (
<div>
<h1>DeutschLernen</h1>
<p>German Learning Application</p>
</div>
);
}