import type { PropsWithChildren } from 'react'; import React from 'react'; export default function RootLayout({ children }: PropsWithChildren<{}>) { return (
<>{children}
); }