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