import React from 'react';
import PokemonList from './pokemon-list';
class WantGroup extends React.Component {
constructor(props) {
super(props);
this.state = {
groupName: props.groupName,
};
}
componentDidMount() {
}
render() {
const that = this;
const { pokemonList } = that.props;
return (
<div>
<h1>{this.state.groupName}</h1>
<PokemonList pokemonList={pokemonList} />
</div>
);
}
}
export default WantGroup;