Skip to content

Instantly share code, notes, and snippets.

@balvinder294
Created February 13, 2025 07:18
Show Gist options
  • Save balvinder294/44554702d27410d9965d13e9f9514800 to your computer and use it in GitHub Desktop.
Save balvinder294/44554702d27410d9965d13e9f9514800 to your computer and use it in GitHub Desktop.
Pure Component Example
import React, { PureComponent } from 'react';
class MyPureComponent extends PureComponent {
render() {
return (
<div>
<p>Value: {this.props.value}</p>
</div>
);
}
}
export default MyPureComponent;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment