umami/pages/settings/teams/index.js

23 lines
408 B
JavaScript
Raw Normal View History

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