Skip to content

Instantly share code, notes, and snippets.

@marensas
Created July 10, 2018 16:48
Show Gist options
  • Save marensas/e821fe383365ff8e40db9180992edb54 to your computer and use it in GitHub Desktop.
Save marensas/e821fe383365ff8e40db9180992edb54 to your computer and use it in GitHub Desktop.
React state example
import React from 'react';
class Something extends React.Component {
constructor(props) {
super(props);
this.state = {
foo: 'bar',
};
}
render() {
return this.state.foo;
}
}
export default Something;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment