diff --git a/app/components/LoadingScreen.js b/app/components/LoadingScreen.js index e380e20..e46c669 100644 --- a/app/components/LoadingScreen.js +++ b/app/components/LoadingScreen.js @@ -1,29 +1,29 @@ import React from 'react'; import PropTypes from 'prop-types'; import { View } from 'react-native'; import { Title, Modal, Portal } from 'react-native-paper'; import Icon from 'react-native-vector-icons/MaterialCommunityIcons'; import styles from '../assets/styles/blink/_LoadingScreen.scss'; const LoadingScreen = (props) => { return ( - + {props.text ? {props.text} : null } ); } LoadingScreen.propTypes = { text: PropTypes.string, show: PropTypes.bool }; -export default LoadingScreen; \ No newline at end of file +export default LoadingScreen;