Files
web-cad/frontend/src/App.tsx
T

12 lines
221 B
TypeScript
Raw Normal View History

2026-06-21 20:31:44 +00:00
function App() {
return (
<>
<div>
<h1>web-cad - Web-based 2D CAD for Event Seating Plans</h1>
<p>Welcome to the web-cad frontend application.</p>
</div>
</>
)
}
export default App