Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save luciotbc/046788a6200c2061fa42e94bc93e2776 to your computer and use it in GitHub Desktop.
Save luciotbc/046788a6200c2061fa42e94bc93e2776 to your computer and use it in GitHub Desktop.
BestPracticesForReact04_ExampleApplication.jsx
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