Skip to content

Instantly share code, notes, and snippets.

@MrHus
Last active June 8, 2017 08:02
Show Gist options
  • Save MrHus/73575cb4af125571013028eb32a0697c to your computer and use it in GitHub Desktop.
Save MrHus/73575cb4af125571013028eb32a0697c to your computer and use it in GitHub Desktop.
The DeleteButton Component
// @flow
import React from 'react';
type Props = {
onClick: () => void
};
export default function DeleteButton(props: Props) {
return (
<div class="button-wrapper">
<button
class="fa fa-trash"
type="button"
onClick={ () => this.props.onClick() }
>
Delete
</button>
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment