import React from 'react'; import { ILeaguePokemon } from 'app/models/Pokemon'; export interface IPokemonSelectListProps { isLoading : boolean; leaguePokemon : ILeaguePokemon; } interface IState { } export class PokemonExplorer extends React.Component { public render() { return (
{ this.props.leaguePokemon.name }
); } }