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