12 lines
127 B
TypeScript
12 lines
127 B
TypeScript
import {HomePage} from "@pages/HomePage";
|
|
|
|
|
|
|
|
export default function Home() {
|
|
return (
|
|
<main>
|
|
<HomePage/>
|
|
</main>
|
|
)
|
|
}
|