10 lines
152 B
TypeScript
10 lines
152 B
TypeScript
import HomeSection from '../components/HomeSection'
|
|
|
|
export default function HomeView() {
|
|
return (
|
|
<main>
|
|
<HomeSection />
|
|
</main>
|
|
)
|
|
}
|