* add missing title * add * update * update * update * fix lint * Update AppsLayout.tsx * update * Update bookings-listing-view.tsx * update --------- Co-authored-by: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com> Co-authored-by: Keith Williams <keithwillcode@gmail.com>
13 lines
389 B
TypeScript
13 lines
389 B
TypeScript
import { _generateMetadata } from "app/_utils";
|
|
import { WithLayout } from "app/layoutHOC";
|
|
|
|
import LegacyPage from "@calcom/features/ee/workflows/pages/index";
|
|
|
|
export const generateMetadata = async () =>
|
|
await _generateMetadata(
|
|
(t) => t("workflows"),
|
|
(t) => t("workflows_to_automate_notifications")
|
|
);
|
|
|
|
export default WithLayout({ getLayout: null, Page: LegacyPage })<"P">;
|