mirror of
https://github.com/Shadowfita/docmost.git
synced 2025-11-18 10:41:04 +10:00
10 lines
166 B
TypeScript
10 lines
166 B
TypeScript
import { ReactNode } from 'react';
|
|
|
|
export default function SettingsLayout({ children }: { children: ReactNode }) {
|
|
return (
|
|
<>
|
|
{children}
|
|
</>
|
|
);
|
|
}
|