mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
a1b09fcbc6
* style: new onboarding screens * chore: onboarding tour screens * fix: build error * fix: build errors * style: default layout background * chor: update user auth hook logic, style: new onboarding screens * fix: component structure * chore: tab responsiveness added * fix: redirection logic * style: welcome screens responsiveness * chore: update workspace url input field * style: mobile responsiveness added * chore: complete onboarding workflow * style: create workspace page design update * style: workspace invitations page design update * chore: update steps logic * fix: step change logic * style: tour steps
18 lines
398 B
TypeScript
18 lines
398 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-hidden bg-custom-background-100">
|
|
<>{children}</>
|
|
</div>
|
|
);
|
|
|
|
export default DefaultLayout;
|