umami/pages/settings/teams/index.js

23 lines
408 B
JavaScript
Raw Normal View History

import AppLayout from 'components/layout/AppLayout';
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 (
<AppLayout>
2023-01-10 08:59:26 +01:00
<TeamsList />
</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,
},
};
}