@dabapps/roe
Version:
A collection of React components, styles, mixins, and atomic CSS classes to aid with the development of web applications.
8 lines (7 loc) • 484 B
TypeScript
import * as React from 'react';
import { StoreState } from '../../store';
import { OptionalComponentPropAndHTMLAttributes } from '../../types';
export declare type AppRootProps = OptionalComponentPropAndHTMLAttributes;
export declare type AppRootState = Pick<StoreState, 'hasStickyFooter' | 'hasFixedNavBar' | 'navBarHeight' | 'footerHeight'>;
declare const _default: React.MemoExoticComponent<(props: OptionalComponentPropAndHTMLAttributes) => JSX.Element>;
export default _default;