Skip to content

Instantly share code, notes, and snippets.

@tortillaj
Created January 18, 2018 19:32
Show Gist options
  • Save tortillaj/07e8e955981abda38217a97b4445f378 to your computer and use it in GitHub Desktop.
Save tortillaj/07e8e955981abda38217a97b4445f378 to your computer and use it in GitHub Desktop.
export default const Button = ({ type, className, children, onClick, isLoading }) => {
return (
<button type={type} className={className} onClick={onClick}>
{isLoading && <Loading />}
{!isLoading && children}
</button>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment