import * as React from 'react'; export interface FrameProps { offset: number; width: number; height: number; children?: React.ReactNode; } export const Frame: React.FunctionComponent = (props) => { return ( {props.children} ); }