import React from "react"; const PageLayout = ({ title, children }) => { return (

{title}

{children}
); }; export default PageLayout;