Skip to content

Instantly share code, notes, and snippets.

@productioncoder
Last active November 3, 2019 10:56
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 productioncoder/f9b12cad055ed4553b95cc0807fee197 to your computer and use it in GitHub Desktop.
Save productioncoder/f9b12cad055ed4553b95cc0807fee197 to your computer and use it in GitHub Desktop.
Cleanup App.js
import React, { Component } from 'react';
class App extends Component {
render() {
return (
<div>Hello World</div>
);
}
}
export default App;
@productioncoder
Copy link
Author

This little piece of code is used as part of the Build Youtube in React tutorial series (part 2):
https://productioncoder.com/build-youtube-in-react-part-2

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment