- 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>
8 lines
141 B
TypeScript
8 lines
141 B
TypeScript
export default function App() {
|
|
return (
|
|
<div>
|
|
<h1>DeutschLernen</h1>
|
|
<p>German Learning Application</p>
|
|
</div>
|
|
);
|
|
}
|