mirror of
https://github.com/umami-software/umami.git
synced 2026-02-10 07:37:11 +01:00
10 lines
193 B
TypeScript
10 lines
193 B
TypeScript
import type { Metadata } from 'next';
|
|
import { TeamsPage } from './TeamsPage';
|
|
|
|
export default function () {
|
|
return <TeamsPage />;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Teams',
|
|
};
|