10 lines
285 B
TypeScript
10 lines
285 B
TypeScript
import SettingsLayout from "../../settings/layout";
|
|
|
|
type ScopedSettingsLayoutProps = {
|
|
children: React.ReactNode;
|
|
};
|
|
|
|
export default function ScopedSettingsLayout({ children }: ScopedSettingsLayoutProps): React.ReactElement {
|
|
return <SettingsLayout>{children}</SettingsLayout>;
|
|
}
|