import * as React from 'react';
import mu from 'mzmu';
import * as _ from 'lodash';
import $project from 'src/project';
import {MrIf, MrElse, MrFill, MrCol, MrAutoBind, MrReq, MrPanel} from 'masterrt';
import {Button, Input, Icon} from 'antd';
import {$pool, $intl} from 'src/services';
import './<%=fileName%>.less';

interface <%=className%>Props {}
interface <%=className%>State {}

export default class <%=className%> extends React.Component<<%=className%>Props, <%=className%>State> {

    state: any = {

    };

    // constructor() {}

    render () {
        return (<div><%=className%> <%=type%></div>);
    }
}