There is a small typo here :
<Text> style={{color: '#FFFFFF'}}>Hippo counter</Text>
You are closing the Text tag too soon.
Corrected :
<Text style={{color: '#FFFFFF'}}>Hippo counter</Text>