import { ReactNode } from 'react'; export default function SettingsLayout({ children }: { children: ReactNode }) { return ( <> {children} ); }