Last active
January 24, 2024 05:08
-
-
Save night-fury-rider/7e07a752934e76f36c6a8e3d3373b25b to your computer and use it in GitHub Desktop.
React memo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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