12 lines
274 B
Text
12 lines
274 B
Text
---
|
|
import Footer from "~/components/astro/footer.astro"
|
|
import Header from "~/components/astro/header.astro"
|
|
import { Test } from "../components/react/test"
|
|
import HomeLayout from "../layouts/home.astro"
|
|
---
|
|
|
|
<HomeLayout>
|
|
<Header />
|
|
<Test />
|
|
<Footer />
|
|
</HomeLayout>
|