umami/src/app/(main)/settings/teams/page.tsx

11 lines
208 B
TypeScript
Raw Normal View History

2024-01-26 07:20:53 +00:00
import { Metadata } from 'next';
2024-02-19 19:31:11 +00:00
import TeamsSettingsPage from './TeamsSettingsPage';
2023-09-29 12:29:22 +00:00
export default function () {
2024-02-19 19:31:11 +00:00
return <TeamsSettingsPage />;
2023-09-29 12:29:22 +00:00
}
2023-10-08 05:42:49 +00:00
export const metadata: Metadata = {
2024-02-17 23:12:14 +00:00
title: 'Teams',
2023-10-08 05:42:49 +00:00
};