Skip to content

Instantly share code, notes, and snippets.

@balvinder294
Created February 13, 2025 07:19
Show Gist options
  • Save balvinder294/bde53d281118992efe6d2bcb4a9c9a73 to your computer and use it in GitHub Desktop.
Save balvinder294/bde53d281118992efe6d2bcb4a9c9a73 to your computer and use it in GitHub Desktop.
import React from 'react';
const MyMemoComponent = React.memo(function MyComponent(props) {
return (
<div>
<p>Value: {props.value}</p>
</div>
);
});
export default MyMemoComponent;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment