Skip to content

Instantly share code, notes, and snippets.

@SaraVieira
Last active July 6, 2018 10:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SaraVieira/eb820c32c0591543448a33121e84044c to your computer and use it in GitHub Desktop.
Save SaraVieira/eb820c32c0591543448a33121e84044c to your computer and use it in GitHub Desktop.
class Wrapper extends React.Component {
constructor(props) {
super(props)
this.state = { image: null }
}
render() {
return React.createElement(
'div',
{ className: 'wrapper' },
'there will a puppy here 😍'
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment