mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-08 14:43:24 +00:00
9 lines
194 B
TypeScript
9 lines
194 B
TypeScript
import {
|
|
UsersTable,
|
|
UsersTableProps,
|
|
} from '~/components/admin/users/users_table';
|
|
|
|
export default function AdminDashboardPage(props: UsersTableProps) {
|
|
return <UsersTable {...props} />;
|
|
}
|