Skip to content

Instantly share code, notes, and snippets.

@mahdiyazdani
Created September 25, 2018 21:51
Show Gist options
  • Save mahdiyazdani/abe6f204c92e5f4f1ba01321385221bf to your computer and use it in GitHub Desktop.
Save mahdiyazdani/abe6f204c92e5f4f1ba01321385221bf to your computer and use it in GitHub Desktop.
componentWillUpdate
import React from 'react';
export class Example extends React.Component {
componentWillUpdate(nextProps, nextState) {
alert('Component is about to update! Any second now!');
}
render() {
return <h1>Hello world</h1>;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment