mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
5fadf53580
* chore: invitations empty state * style: new auth screens * chore: update typography * chore: update border colors * chore: resend code text
13 lines
305 B
TypeScript
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;
|