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

10 lines
139 B
TypeScript
Raw Normal View History

2026-06-21 20:31:44 +00:00
function App() {
return (
<>
<h1>Web CAD</h1>
<p>Welcome to the Web CAD application</p>
2026-06-21 20:31:44 +00:00
</>
)
}
export default App