18 lines
392 B
TypeScript
18 lines
392 B
TypeScript
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<IPokemonSelectListProps, IState> {
|
|
public render() {
|
|
return (<div>{ this.props.leaguePokemon.name }</div>);
|
|
}
|
|
}
|