mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-08 14:43:24 +00:00
16 lines
397 B
TypeScript
16 lines
397 B
TypeScript
import { ReactNode } from 'react';
|
|
import {
|
|
UsersTable,
|
|
UsersTableProps,
|
|
} from '~/components/admin/users/users_table';
|
|
import { ContentLayout } from '~/layouts/content_layout';
|
|
|
|
function AdminDashboardPage(props: UsersTableProps) {
|
|
return <UsersTable {...props} />;
|
|
}
|
|
|
|
AdminDashboardPage.layout = (page: ReactNode) => (
|
|
<ContentLayout children={page} />
|
|
);
|
|
export default AdminDashboardPage;
|