mirror of
https://github.com/makeplane/plane.git
synced 2025-12-24 23:59:40 +01:00
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;
|