Skip to content

Instantly share code, notes, and snippets.

@cesalberca
Created June 5, 2017 18:39
Show Gist options
  • Save cesalberca/2c4afea03630c0b828368d49f9cb5bf8 to your computer and use it in GitHub Desktop.
Save cesalberca/2c4afea03630c0b828368d49f9cb5bf8 to your computer and use it in GitHub Desktop.
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