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)

25 lines (24 loc) 593 B
/// <reference types="styled-components" /> import React from 'react'; export interface OneSidebarLayoutProps { /** * The main content area. */ content: React.ReactNode; /** * The sidebar area. */ sidebar: React.ReactNode; /** * The theme props is passed automatically to the component via styled components. * * @default "null" */ theme: any; } /** * Layout with one sidebar. */ export declare const OneSidebarLayout: React.ForwardRefExoticComponent<Pick<OneSidebarLayoutProps, "content" | "sidebar"> & { theme?: any; }>;