mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
21 lines
524 B
TypeScript
21 lines
524 B
TypeScript
import { FC, ReactNode } from "react";
|
|
// components
|
|
import { ProjectSettingsSidebar } from "./sidebar";
|
|
|
|
export interface IProjectSettingLayout {
|
|
children: ReactNode;
|
|
}
|
|
|
|
export const ProjectSettingLayout: FC<IProjectSettingLayout> = (props) => {
|
|
const { children } = props;
|
|
|
|
return (
|
|
<div className="flex gap-2 h-full w-full overflow-x-hidden overflow-y-scroll">
|
|
<div className="w-80 pt-8 overflow-y-hidden flex-shrink-0">
|
|
<ProjectSettingsSidebar />
|
|
</div>
|
|
{children}
|
|
</div>
|
|
);
|
|
};
|