mirror of
https://github.com/m1ngsama/FUJI.git
synced 2025-12-25 02:56:38 +00:00
11 lines
260 B
Text
11 lines
260 B
Text
---
|
|
import BaseLayout from "../../layouts/BaseLayout.astro"
|
|
// import { Button } from "@nextui-org/react";
|
|
import ReactChild from "./react/acontent"
|
|
---
|
|
|
|
<BaseLayout title="Welcome to Astro.">
|
|
<main>
|
|
<ReactChild client:visible />
|
|
</main>
|
|
</BaseLayout>
|