Created
May 27, 2022 15:35
-
-
Save frivolta/7a962b4acf9f6abe5724109321446914 to your computer and use it in GitHub Desktop.
Write better React, compose multiple functional HoCs, Higher-Order Components - Component
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
// A page component that just render text | |
const App = (props) => { | |
return ( | |
<div className="App"> | |
<h1>A component</h1> | |
</div> | |
); | |
}; | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment