Files
tietokonepaja.fi/src/views/HomeView.tsx
2026-05-19 21:25:23 +03:00

10 lines
152 B
TypeScript

import HomeSection from '../components/HomeSection'
export default function HomeView() {
return (
<main>
<HomeSection />
</main>
)
}