2
0
Files
2024-08-09 00:39:27 +02:00

21 lines
427 B
TypeScript

"use client";
import { Meta } from "@calcom/ui";
import PageWrapper from "@components/PageWrapper";
import { getLayout } from "@components/auth/layouts/AdminLayout";
function AdminAppsView() {
return (
<>
<Meta title="Admin" description="admin_description" />
<h1>Admin index</h1>
</>
);
}
AdminAppsView.getLayout = getLayout;
AdminAppsView.PageWrapper = PageWrapper;
export default AdminAppsView;