import { ArrowLongLeftIcon } from "@heroicons/react/24/solid"; import Link from "next/link"; import { ReactNode } from "react"; interface Props { children: ReactNode; } const ArticlesLayout = ({ children }: Props) => { return (
{" "} Back to Articles {children} {" "} Back to Articles
); }; export default ArticlesLayout;