import React, { PureComponent } from 'react'; import PropTypes from 'prop-types'; import { Button } from 'react-bootstrap'; import { registerComponent } from 'meteor/vulcan:core'; export class AccountsButton extends PureComponent { render () { const { label, href = null, type, disabled = false, className, onClick } = this.props; return type === 'link' ? { label } : ; } } AccountsButton.propTypes = { onClick: PropTypes.func }; registerComponent('AccountsButton', AccountsButton);