ai/frontend/src/App.tsx
2025-04-10 00:44:45 +02:00

9 lines
154 B
TypeScript

function App() {
return (
<div style={{ padding: '2rem' }}>
<h1>Hello from React!</h1>
</div>
);
}
export default App