mirror of
https://github.com/umami-software/umami.git
synced 2025-12-06 01:18:00 +01:00
9 lines
192 B
TypeScript
9 lines
192 B
TypeScript
import type { Metadata } from 'next';
|
|
import { UsersPage } from './UsersPage';
|
|
|
|
export default function () {
|
|
return <UsersPage />;
|
|
}
|
|
export const metadata: Metadata = {
|
|
title: 'Users',
|
|
};
|