Exercise

<Loader show={ !pokemon.get('name') }>
<ScrollView style={ styles.container }>
<Sprites sprites={ pokemon.get('sprites') } />
<BasicInfo { ...basicInfo } />
<Header>STATS</Header>
<Stats stats={ pokemon.get('stats') } />
<Header>MOVES</Header>
<Moves moves={ pokemon.get('moves') } />
</ScrollView>
</Loader>Last updated
Was this helpful?