UNPKG

jobiqo-cl

Version:

[![CircleCI](https://circleci.com/gh/jobiqo/jobiqo-cl.svg?style=svg&circle-token=5a24efa5b8bbc4879276123e77d0d3f35ca7144c)](https://circleci.com/gh/jobiqo/jobiqo-cl)

21 lines (20 loc) 579 B
import React from 'react'; export interface LayoutProps { /** * The content to display inside the layout container. */ children: React.ReactNode; /** * True if the main content should be full width. */ fullWidthContainer?: boolean; /** * Main content size. */ mainContentSize?: 'small' | 'medium' | 'large'; } /** * Creates a generic layout to be reused on pages, including Header, main content * and footer. */ export declare const Layout: ({ children, fullWidthContainer, mainContentSize }: LayoutProps) => JSX.Element;