forked from github/plane
5b0066140f
* chore: format all files in the project * fix: removing @types/react from dependencies * fix: adding prettier and eslint config * chore: format files * fix: upgrading turbo version * chore: ignoring warnings and adding todos * fix: updated the type of bubble menu item in the document editor * chore: format files --------- Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com>
21 lines
534 B
TypeScript
21 lines
534 B
TypeScript
import { FC, ReactNode } from "react";
|
|
// components
|
|
import { WorkspaceSettingsSidebar } from "./sidebar";
|
|
|
|
export interface IWorkspaceSettingLayout {
|
|
children: ReactNode;
|
|
}
|
|
|
|
export const WorkspaceSettingLayout: FC<IWorkspaceSettingLayout> = (props) => {
|
|
const { children } = props;
|
|
|
|
return (
|
|
<div className="flex h-full w-full gap-2 overflow-x-hidden overflow-y-scroll">
|
|
<div className="w-80 flex-shrink-0 overflow-y-hidden pt-8">
|
|
<WorkspaceSettingsSidebar />
|
|
</div>
|
|
{children}
|
|
</div>
|
|
);
|
|
};
|