Skip to content

Instantly share code, notes, and snippets.

@roeib
Last active July 18, 2020 16:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save roeib/1ee15c5fb08da07cf9cc276717cba34c to your computer and use it in GitHub Desktop.
Save roeib/1ee15c5fb08da07cf9cc276717cba34c to your computer and use it in GitHub Desktop.
import React from 'react';
function ExampleApplication() {
return (
<>
<Header />
<React.StrictMode>
<>
<ComponentOne />
<ComponentTwo />
</>
</React.StrictMode>
<Footer />
</>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment