Skip to content
Snippets Groups Projects
Button.js 193 B
function Button({type,text,onClick}){
    return(
        <button
        type = {type}
        onClick={onClick}
        >
            {text}
        </button>
    );
}

export default Button;