import * as React from 'react'; export interface DocumentProps { height: number; width: number; x: number; y: number; children: React.ReactElement; } export const Document: React.FunctionComponent = (props) => { return ( {props.children} ); }