import React from "react"; const RootLayout = ({ children }: React.PropsWithChildren) => { return (
{children}
); }; export default RootLayout;