ai/frontend/src/App.tsx

9 lines
154 B
TypeScript
Raw Normal View History

2025-04-09 22:44:45 +00:00
function App() {
return (
<div style={{ padding: '2rem' }}>
<h1>Hello from React!</h1>
</div>
);
}
export default App