mirror of
https://github.com/nonebot/nonebot2.git
synced 2025-09-05 19:46:47 +00:00
13 lines
231 B
TypeScript
13 lines
231 B
TypeScript
import React from "react";
|
|
|
|
import Layout from "@theme/Layout";
|
|
import HomeContent from "@/components/Home";
|
|
|
|
export default function Homepage(): React.ReactNode {
|
|
return (
|
|
<Layout>
|
|
<HomeContent />
|
|
</Layout>
|
|
);
|
|
}
|