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