import React from "react";
function layout({ children }) {
return (
<>
{children}
</>
);
}
export default layout;