cal.pub0.org/apps/web/pages/v2/settings/admin/index.tsx

14 lines
220 B
TypeScript
Raw Normal View History

import { getLayout } from "@calcom/ui/v2/layouts/AdminLayout";
function AdminAppsView() {
return (
<>
<h1>Admin index</h1>
</>
);
}
AdminAppsView.getLayout = getLayout;
export default AdminAppsView;