Created
October 23, 2018 19:23
-
-
Save luciotbc/046788a6200c2061fa42e94bc93e2776 to your computer and use it in GitHub Desktop.
BestPracticesForReact04_ExampleApplication.jsx
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 from 'react'; | |
const ExampleApplication = () => ( | |
<div> | |
<Header /> | |
<React.StrictMode> | |
<div> | |
<ComponentOne /> | |
<ComponentTwo /> | |
</div> | |
</React.StrictMode> | |
<Footer /> | |
</div> | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment