Skip to content

Instantly share code, notes, and snippets.

@cesalberca
Created June 5, 2017 18:32
Show Gist options
  • Save cesalberca/00ba07637faa2f6863b8202e02f755eb to your computer and use it in GitHub Desktop.
Save cesalberca/00ba07637faa2f6863b8202e02f755eb to your computer and use it in GitHub Desktop.
import * as React from 'react'
interface Props {
message: string
}
const Component = (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