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