forked from github/plane
6e940399cb
* style: sidebar improvement * style: header height consistency * chore: layout consistency and general page improvement * chore: layout, email form and image form improvement * chore: instance admins endpoint intergrated and code refactor * chore: code refactor * chore: google client secret section removed
35 lines
1.1 KiB
TypeScript
35 lines
1.1 KiB
TypeScript
import { FC, ReactNode } from "react";
|
|
// layouts
|
|
import { AdminAuthWrapper, UserAuthWrapper } from "layouts/auth-layout";
|
|
// components
|
|
import { InstanceAdminSidebar } from "./sidebar";
|
|
import { InstanceAdminHeader } from "./header";
|
|
|
|
export interface IInstanceAdminLayout {
|
|
children: ReactNode;
|
|
}
|
|
|
|
export const InstanceAdminLayout: FC<IInstanceAdminLayout> = (props) => {
|
|
const { children } = props;
|
|
|
|
return (
|
|
<>
|
|
<UserAuthWrapper>
|
|
<AdminAuthWrapper>
|
|
<div className="relative flex h-screen w-full overflow-hidden">
|
|
<InstanceAdminSidebar />
|
|
<main className="relative flex flex-col h-full w-full overflow-hidden bg-custom-background-100">
|
|
<InstanceAdminHeader />
|
|
<div className="h-full w-full overflow-hidden px-10 py-12">
|
|
<div className="relative h-full w-full overflow-x-hidden overflow-y-scroll">
|
|
<>{children}</>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
</AdminAuthWrapper>
|
|
</UserAuthWrapper>
|
|
</>
|
|
);
|
|
};
|