2023-01-05 17:00:16 +00:00
|
|
|
import { Meta } from "@calcom/ui";
|
|
|
|
|
|
|
|
import { getLayout } from "@components/auth/layouts/AdminLayout";
|
2022-08-09 09:21:15 +00:00
|
|
|
|
|
|
|
function AdminAppsView() {
|
|
|
|
return (
|
|
|
|
<>
|
2022-09-14 09:42:48 +00:00
|
|
|
<Meta title="Admin" description="admin_description" />
|
2022-08-09 09:21:15 +00:00
|
|
|
<h1>Admin index</h1>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
AdminAppsView.getLayout = getLayout;
|
|
|
|
|
|
|
|
export default AdminAppsView;
|