-
-
Save Mohammad-Faisal/a5e4afed5a0e2884f3f16f9f3f2d7d98 to your computer and use it in GitHub Desktop.
This file contains 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 ,{useState} from "react"; | |
const ChildrenComponent = React.memo(({userName}) => { | |
console.log('rendered') | |
return <div> {userName}</div> | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment