plane/apps/app/layouts/default-layout/index.tsx
Aaryan Khandelwal 5fadf53580
style: auth screens (#1531)
* chore: invitations empty state

* style: new auth screens

* chore: update typography

* chore: update border colors

* chore: resend code text
2023-07-17 13:00:44 +05:30

13 lines
305 B
TypeScript

type Props = {
children: React.ReactNode;
gradient?: boolean;
};
const DefaultLayout: React.FC<Props> = ({ children, gradient = false }) => (
<div className={`h-screen w-full overflow-hidden ${gradient ? "" : "bg-custom-background-100"}`}>
{children}
</div>
);
export default DefaultLayout;