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:
parent
db87e09333
commit
01e6bf3f28
3 changed files with 22 additions and 0 deletions
8
german-app-frontend/src/App.tsx
Normal file
8
german-app-frontend/src/App.tsx
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
export default function App() {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<h1>DeutschLernen</h1>
|
||||||
|
<p>German Learning Application</p>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
9
german-app-frontend/src/index.css
Normal file
9
german-app-frontend/src/index.css
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
* {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: Arial, sans-serif;
|
||||||
|
}
|
||||||
5
german-app-frontend/src/main.tsx
Normal file
5
german-app-frontend/src/main.tsx
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
import { createRoot } from 'react-dom/client';
|
||||||
|
import App from './App';
|
||||||
|
import './index.css';
|
||||||
|
|
||||||
|
createRoot(document.getElementById('root')!).render(<App />);
|
||||||
Loading…
Add table
Reference in a new issue