Skip to content

Instantly share code, notes, and snippets.

@hugesean
Created August 27, 2018 04:59
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 hugesean/5b3b9a418c14749c54a271b06ad1b8a8 to your computer and use it in GitHub Desktop.
Save hugesean/5b3b9a418c14749c54a271b06ad1b8a8 to your computer and use it in GitHub Desktop.
import React, { Component } from 'react';
import logo from './logo.svg';
import './App.css';
import Characters from './components/characters/Characters.js'
class App extends Component {
render() {
return (
<div className="App">
<Characters {...this.props}/>
</div>
);
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment