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

16 lines
296 B
TypeScript
Raw Normal View History

2023-09-29 12:29:22 +00:00
import { Metadata } from 'next';
2024-01-26 07:20:53 +00:00
import UsersDataTable from './UsersDataTable';
import UsersHeader from './UsersHeader';
2023-09-29 12:29:22 +00:00
export default function () {
2024-01-26 07:20:53 +00:00
return (
<>
<UsersHeader />
<UsersDataTable />
</>
);
2023-09-29 12:29:22 +00:00
}
export const metadata: Metadata = {
title: 'Users | umami',
};