Skip to content

Instantly share code, notes, and snippets.

@reime005
Created July 26, 2020 14:16
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 reime005/08ca0e6821d635ad0fa4cc25d5a6260a to your computer and use it in GitHub Desktop.
Save reime005/08ca0e6821d635ad0fa4cc25d5a6260a to your computer and use it in GitHub Desktop.
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