Skip to content

Instantly share code, notes, and snippets.

@justusromijn
Last active June 12, 2019 09:37
Show Gist options
  • Save justusromijn/e2430298df139888d5dcb3b0603ec42b to your computer and use it in GitHub Desktop.
Save justusromijn/e2430298df139888d5dcb3b0603ec42b to your computer and use it in GitHub Desktop.
Simple React Button Component
import * as React from 'react';
// Simple Button Component (Dumb)
export const Button = ({ flavour = 'primary', onClick = () => {}, label }) => (
<button onClick={onClick} className={flavour} value={label} />
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment