2023-03-24 18:55:20 +01:00
|
|
|
import AppLayout from 'components/layout/AppLayout';
|
2023-03-24 00:33:10 +01:00
|
|
|
import SettingsLayout from 'components/layout/SettingsLayout';
|
2023-01-10 08:59:26 +01:00
|
|
|
import TeamsList from 'components/pages/settings/teams/TeamsList';
|
|
|
|
|
2023-02-28 05:03:04 +01:00
|
|
|
export default function TeamsPage({ disabled }) {
|
|
|
|
if (disabled) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2023-01-10 08:59:26 +01:00
|
|
|
return (
|
2023-03-24 18:55:20 +01:00
|
|
|
<AppLayout>
|
|
|
|
<SettingsLayout>
|
|
|
|
<TeamsList />
|
|
|
|
</SettingsLayout>
|
|
|
|
</AppLayout>
|
2023-01-10 08:59:26 +01:00
|
|
|
);
|
|
|
|
}
|
2023-02-28 05:03:04 +01:00
|
|
|
|
|
|
|
export async function getServerSideProps() {
|
|
|
|
return {
|
|
|
|
props: {
|
|
|
|
disabled: !!process.env.CLOUD_MODE,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|