mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
26ba4d71c3
* fix: order by last updated * fix: cycles empty space alignment, chore: new meta tags * chore: update meta tags
18 lines
390 B
TypeScript
18 lines
390 B
TypeScript
type Props = {
|
|
children: React.ReactNode;
|
|
noPadding?: boolean;
|
|
bg?: "primary" | "secondary";
|
|
noHeader?: boolean;
|
|
breadcrumbs?: JSX.Element;
|
|
left?: JSX.Element;
|
|
right?: JSX.Element;
|
|
};
|
|
|
|
const DefaultLayout: React.FC<Props> = ({ children }) => (
|
|
<div className="h-screen w-full overflow-auto bg-brand-surface-1">
|
|
<>{children}</>
|
|
</div>
|
|
);
|
|
|
|
export default DefaultLayout;
|