Skip to content

Instantly share code, notes, and snippets.

@night-fury-rider
Last active January 24, 2024 05:08
Show Gist options
  • Save night-fury-rider/7e07a752934e76f36c6a8e3d3373b25b to your computer and use it in GitHub Desktop.
Save night-fury-rider/7e07a752934e76f36c6a8e3d3373b25b to your computer and use it in GitHub Desktop.
React memo
import React, { memo } from 'react';
function UVNumber(props: any) {
return (
<div> Memo by Yuvraj Patil</div>
)
}
export default memo(UVNumber);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment