Skip to content

Instantly share code, notes, and snippets.

@ioness
Created April 19, 2018 03:40
Show Gist options
  • Save ioness/a9dcc13f02ddfd2c82bd847d635b4706 to your computer and use it in GitHub Desktop.
Save ioness/a9dcc13f02ddfd2c82bd847d635b4706 to your computer and use it in GitHub Desktop.
import * as React from 'react'
class Test extends React.Component<any, any> {
constructor (props: any) {
super(props)
}
render () {
return <Register foo='This is '>my beloved child</Register>
}
}
const Register: any = ({ foo, children }: any) => {
return <div>{foo} + {children}</div>
}
export default Test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment