Created
July 26, 2020 14:16
-
-
Save reime005/08ca0e6821d635ad0fa4cc25d5a6260a to your computer and use it in GitHub Desktop.
This file contains hidden or 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 * as React from 'react'; | |
import VeryBigJokesList from './VeryBigJokesList'; | |
function App() { | |
return ( | |
<div className="App"> | |
<header className="App-header"> | |
<div style={{ maxWidth: 600 }}> | |
<VeryBigJokesList /> | |
</div> | |
</header> | |
</div> | |
); | |
} | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment