Skip to content

Instantly share code, notes, and snippets.

@leventebalogh
Last active May 26, 2017 13:14
Show Gist options
  • Save leventebalogh/a49577ba2028c7f36199e616831ce1d2 to your computer and use it in GitHub Desktop.
Save leventebalogh/a49577ba2028c7f36199e616831ce1d2 to your computer and use it in GitHub Desktop.
Button.jsx
// @flow
import React from 'react';
type props = {
text: string,
color: 'red' | 'blue' | 'green'
}
export default function Button (props: props) {
return (
<div>
{ props.text }
<span>Foobar</span>
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment