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

10 lines
183 B
TypeScript
Raw Normal View History

2023-09-29 12:29:22 +00:00
import { Metadata } from 'next';
2024-02-06 07:59:33 +00:00
import UsersPage from './UsersPage';
2023-09-29 12:29:22 +00:00
export default function () {
2024-02-06 07:59:33 +00:00
return <UsersPage />;
2023-09-29 12:29:22 +00:00
}
export const metadata: Metadata = {
2024-02-17 23:12:14 +00:00
title: 'Users',
2023-09-29 12:29:22 +00:00
};