Files
docmost-ryan/frontend/src/app/(dashboard)/settings/layout.tsx
2023-09-15 01:22:47 +01:00

10 lines
166 B
TypeScript

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