Skip to content
Snippets Groups Projects
Button.js 159 B
Newer Older
  • Learn to ignore specific revisions
  • function Button({type,text}){
    
    Min Dong Hyeun's avatar
    Min Dong Hyeun committed
        return(
            <button
    
            type = {type}
            >
                {text}
    
    Min Dong Hyeun's avatar
    Min Dong Hyeun committed
            </button>
        );
    }
    
    export default Button;