mirror of
https://github.com/nonebot/nonebot2.git
synced 2025-02-08 20:06:31 +08:00
14 lines
228 B
TypeScript
14 lines
228 B
TypeScript
import React from "react";
|
|
|
|
import Layout from "@theme/Layout";
|
|
|
|
import HomeContent from "@/components/Home";
|
|
|
|
export default function Homepage(): JSX.Element {
|
|
return (
|
|
<Layout>
|
|
<HomeContent />
|
|
</Layout>
|
|
);
|
|
}
|