plane/apps/app/layouts/default-layout/index.tsx
Aaryan Khandelwal 26ba4d71c3
fix: order by last updated, cycles empty state alignment (#1151)
* fix: order by last updated

* fix: cycles empty space alignment, chore: new meta tags

* chore: update meta tags
2023-05-29 15:38:35 +05:30

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;