* make no-meeting-found page use ssr * remove-route-groups * add LayoutHOC * fix * fix * ensure proper types for withLayout function --------- Co-authored-by: Greg Pabian <35925521+grzpab@users.noreply.github.com>
12 lines
335 B
TypeScript
12 lines
335 B
TypeScript
import { _generateMetadata } from "app/_utils";
|
|
|
|
import Page from "@calcom/features/ee/users/pages/users-listing-view";
|
|
|
|
export const generateMetadata = async () =>
|
|
await _generateMetadata(
|
|
() => "Users",
|
|
() => "A list of all the users in your account including their name, title, email and role."
|
|
);
|
|
|
|
export default Page;
|