'use strict'

import React from 'react';

const Button = React.createClass({

    statics: {
        getDefaultData(){
            return '我是一个按钮'
        }
    },

    render: function () {
        return (
            <button {...this.props} type="button" className="am-btn am-btn-primary">{this.props.data}</button>
        )
    }
})

export default Button
