Skip to content

Instantly share code, notes, and snippets.

@ermakovich
Created March 10, 2019 16:21
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 ermakovich/c398e50c66ca995249b08a32e55099b4 to your computer and use it in GitHub Desktop.
Save ermakovich/c398e50c66ca995249b08a32e55099b4 to your computer and use it in GitHub Desktop.
import React from 'react';
class RenderCount extends React.Component {
count = 0;
render() {
this.count++;
return this.count;
}
}
export default RenderCount;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment