HoangHai-portliofio-projects / Projects / 6.TodoApp.fullStack.React+Springboot / react-fe / src / components / button.js
button.js
Raw
import PropTypes from 'prop-types'

const Button = ({ color, text, onClick }) => {

    return <button
        onClick = {onClick}
        style={{backgroundColor : color }}
        className='btn'
        > 
            {text} 
        </button>
}

Button.defaultProps = {
    style : 'steelblue',
}

Button.propTypes = {
    color : PropTypes.string,
    text : PropTypes.string,
    onClick : PropTypes.func.isRequired, 
}

export default Button