10 lines
198 B
TypeScript
10 lines
198 B
TypeScript
import SettingsLayout from './SettingsLayout';
|
|
|
|
export default function ({ children }) {
|
|
if (process.env.cloudMode) {
|
|
return null;
|
|
}
|
|
|
|
return <SettingsLayout>{children}</SettingsLayout>;
|
|
}
|