Created
May 27, 2022 15:41
-
-
Save frivolta/d795cc6e4fa16be8ca8d88f07eb0da0e to your computer and use it in GitHub Desktop.
Write better React, compose multiple functional HoCs, Higher-Order Components - HoC
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
export const withTitle = (Component) => (props) => { | |
const title = "Custom title"; | |
return <Component title={title} {...props} />; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment