Skip to content

Instantly share code, notes, and snippets.

@ankitamasand
Created April 17, 2019 17: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 ankitamasand/87d5d8432c702c7045e6417c951bd0d6 to your computer and use it in GitHub Desktop.
Save ankitamasand/87d5d8432c702c7045e6417c951bd0d6 to your computer and use it in GitHub Desktop.
import React, { Component, Fragment } from 'react';
import { render } from 'react-dom';
import PokemonList from './pokemon-list';
import './style.css';
const App = () => {
return (
<Fragment>
<h2>Pokemon List</h2>
<PokemonList />
</Fragment>
)
}
render(<App />, document.getElementById('root'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment