// @flow import * as React from 'react'; import {StyleSheet, View} from 'react-native'; import Mascot, {MASCOT_STYLE} from '../Mascot/Mascot'; const styles = StyleSheet.create({ center: { marginTop: 'auto', marginBottom: 'auto', marginRight: 'auto', marginLeft: 'auto', }, }); class MascotIntroEnd extends React.Component { shouldComponentUpdate(): boolean { return false; } render(): React.Node { return ( ); } } export default MascotIntroEnd;