“Cómo hacer el botón en React JS” Código de respuesta

Cómo crear un botón con React

import PropTypes from 'prop-types'

const Button = ({ color, text, onClick }) => {
    return (
    <button 
        onClick={onClick}
        style={{backgroundColor: color}} 
        className='btn'>
        {text}
    </button>
    )
}

Button.defaultrops = {
    color: 'steelblue'
}

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

export default Button
Anthony Smith

Cómo hacer el botón en React JS

<div className='col '>
            <button type="button" className="btn">Buy a G-Raffe Now!</button>
            </div>
// css for button
.btn{
    padding-left: 35px;
    padding-right: 35px;
    border: 2px;
    font-family: zedya;
    font-size: 15px;
    color: black;
    background-color: #fcdc1f;
    font-weight: 700;
    font-style: italic;
    
}
.btn:hover{
    color: rgb(255, 255, 255);
    animation: normal;
}
Cruel Cassowary

Respuestas similares a “Cómo hacer el botón en React JS”

Preguntas similares a “Cómo hacer el botón en React JS”

Más respuestas relacionadas con “Cómo hacer el botón en React JS” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código