import { memo } from 'react'; import type { FC } from 'react'; import { View, ActivityIndicator } from 'react-native'; import styles from './style'; type ILoadingProps = { loadingDisplay: any | 'none'; size?: number | 'small' | 'large'; }; const Loading: FC = ({ size, loadingDisplay }) => { return ( ); }; export default memo(Loading, () => { return false; });