@combine-labs/combine-polaris
Version:
Combine Lab's product component library. Forked from Shopify's Polaris.
14 lines (13 loc) • 464 B
TypeScript
import * as React from 'react';
import { AnnotatedSection, Section } from './components';
export interface Props {
/** Automatically adds sections to layout. */
sectioned?: boolean;
/** The content to display inside the layout. */
children?: React.ReactNode;
}
export default class Layout extends React.Component<Props, never> {
static AnnotatedSection: typeof AnnotatedSection;
static Section: typeof Section;
render(): JSX.Element;
}