piral-core
Version:
The core library for creating a Piral instance.
21 lines (20 loc) • 555 B
TypeScript
import * as React from 'react';
import { LayoutBreakpoints } from '../types';
/**
* The props for the PiralView component.
*/
export interface PiralViewProps {
/**
* The custom breakpoints for the different layout modi.
*/
breakpoints?: LayoutBreakpoints;
/**
* The extra content.
*/
children: React.ReactNode;
}
/**
* The component responsible for the generic view of the application.
* This includes the used the current content and some convenience.
*/
export declare const PiralView: React.FC<PiralViewProps>;