react-bootstrap-table2/website/core/button.js
2018-10-07 17:20:27 +08:00

20 lines
375 B
JavaScript

const React = require('react');
class Button extends React.Component {
render() {
return (
<div className="pluginWrapper buttonWrapper">
<a className="button" href={this.props.href} target={this.props.target}>
{this.props.children}
</a>
</div>
);
}
}
Button.defaultProps = {
target: '_self',
};
module.exports = Button;