Files

20 lines
351 B
TypeScript
Raw Normal View History

2023-11-01 22:25:06 +08:00
import { ReactNode } from "react";
2023-11-06 17:27:50 +08:00
import ArticleLayout from "@/app/_components/ArticleLayout";
2023-11-01 22:25:06 +08:00
const Layout = ({
children,
}: {
children: ReactNode;
params: {
articleId: string;
};
}) => {
return (
<ArticleLayout leftNavTitle={"媒体扫描"} navigations={[]}>
{children}
</ArticleLayout>
);
};
export default Layout;