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