This commit is contained in:
quantulr
2023-11-01 22:25:06 +08:00
parent 1a22404f19
commit 42d517f0a1
8 changed files with 96 additions and 11 deletions

View File

@ -0,0 +1,19 @@
import { ReactNode } from "react";
import ArticleLayout from "@/app/components/ArticleLayout";
const Layout = ({
children,
}: {
children: ReactNode;
params: {
articleId: string;
};
}) => {
return (
<ArticleLayout leftNavTitle={"媒体扫描"} navigations={[]}>
{children}
</ArticleLayout>
);
};
export default Layout;