2022-11-23 02:55:25 +00:00
|
|
|
import { getAdminLayout as getLayout, Meta } from "@calcom/ui";
|
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;
|