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