import { ReactNode } from "react"; import ArticleLayout from "@/app/_components/ArticleLayout"; const Layout = ({ children, }: { children: ReactNode; params: { articleId: string; }; }) => { return ( {children} ); }; export default Layout;