2020-08-05 07:45:05 +02:00
|
|
|
import React from 'react';
|
2020-08-07 11:27:12 +02:00
|
|
|
import Layout from 'components/layout/Layout';
|
2020-09-27 09:51:29 +02:00
|
|
|
import Settings from 'components/pages/Settings';
|
2020-08-06 04:04:02 +02:00
|
|
|
import useRequireLogin from 'hooks/useRequireLogin';
|
2020-08-05 07:45:05 +02:00
|
|
|
|
2022-10-13 01:29:44 +02:00
|
|
|
export default function SettingsPage() {
|
2020-08-06 04:04:02 +02:00
|
|
|
const { loading } = useRequireLogin();
|
2020-08-05 07:45:05 +02:00
|
|
|
|
2022-10-13 01:29:44 +02:00
|
|
|
if (process.env.isCloudMode || loading) {
|
2020-08-05 07:45:05 +02:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2022-10-13 01:29:44 +02:00
|
|
|
<Layout>
|
2020-08-05 07:45:05 +02:00
|
|
|
<Settings />
|
|
|
|
</Layout>
|
|
|
|
);
|
|
|
|
}
|