20 lines
465 B
TypeScript
20 lines
465 B
TypeScript
import { type ReactElement } from "react";
|
|
import { Layout } from "@/components/layout/Layout";
|
|
import { UsersTable } from "@/components/superadmin";
|
|
|
|
const Users = (): ReactElement => {
|
|
return (
|
|
<Layout
|
|
currentPage="Users"
|
|
pageHeader={{
|
|
title: "User Management",
|
|
description: "View and manage all users within your organization.",
|
|
}}
|
|
>
|
|
<UsersTable showHeader={true} />
|
|
</Layout>
|
|
);
|
|
};
|
|
|
|
export default Users;
|