import { StyleSheet, View } from 'react-native'; import { useColors } from '../../hook'; import { Image } from '../../ui/Image'; /** * Blank placeholder component. * @returns React.ReactElement */ export function EmptyPlaceholder() { const { getColor } = useColors(); return ( ); } const styles = StyleSheet.create({ container: { position: 'absolute', width: '100%', height: '100%', backgroundColor: 'blue', justifyContent: 'center', alignItems: 'center', }, });