Created
June 5, 2017 18:39
-
-
Save cesalberca/2c4afea03630c0b828368d49f9cb5bf8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as React from 'react' | |
interface Props { | |
message: string | |
} | |
const Component: React.StatelessComponent<Props> = props => { | |
const { message } = props | |
return ( | |
<div>{message}</div> | |
) | |
} | |
export default Component |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment