Files
calendar/apps/web/pages/settings/admin/apps.tsx
T
0284ffc75f Removed v2 pages directory, moved all pages to root and deleted old v1 pages and middleware redirect. (#5044)
* Removed v2 pages directory, moved all pages to root and deleted old v1 pages and middleware redirect.

* Removed v2 from imports path.

Co-authored-by: Alex van Andel <me@alexvanandel.com>
2022-10-17 18:14:43 +05:30

16 lines
328 B
TypeScript

import Meta from "@calcom/ui/v2/core/Meta";
import { getLayout } from "@calcom/ui/v2/core/layouts/AdminLayout";
function AdminAppsView() {
return (
<>
<Meta title="Apps" description="apps_description" />
<h1>App listing</h1>
</>
);
}
AdminAppsView.getLayout = getLayout;
export default AdminAppsView;