import * as React from 'react' import ApplicationStore from '../store/application' import ViewportStore from '../store/viewport' export interface PropsDefine { viewport?: ViewportStore application?: ApplicationStore } export class Props implements PropsDefine { } export interface StateDefine { } export class State implements StateDefine { }