mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
19 lines
391 B
JavaScript
19 lines
391 B
JavaScript
import React from 'react';
|
|
import Layout from 'components/layout/Layout';
|
|
import Settings from 'components/pages/Settings';
|
|
import useRequireLogin from 'hooks/useRequireLogin';
|
|
|
|
export default function SettingsPage() {
|
|
const { loading } = useRequireLogin();
|
|
|
|
if (process.env.isCloudMode || loading) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<Layout>
|
|
<Settings />
|
|
</Layout>
|
|
);
|
|
}
|