Skip to content

Instantly share code, notes, and snippets.

@whtswrng
Created October 7, 2018 16:34
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 whtswrng/a3252df16b9242343a00199291a06e03 to your computer and use it in GitHub Desktop.
Save whtswrng/a3252df16b9242343a00199291a06e03 to your computer and use it in GitHub Desktop.
class App extends Component {
static propTypes = {
fetchUsers: PropTypes.func.isRequired,
saveUsers: PropTypes.func.isRequired
};
...
componentDidMount() {
const users = this.props.fetchUsers();
this.setState({users});
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment