import { View, Text, StyleSheet } from 'react-native' import React from 'react' import { useTheme } from '../../app/contexts/ThemeContext' const EmptyListCompenent:React.FC = () => { const {colors} = useTheme(); return ( No matching Data ) } const styles = StyleSheet.create({ container: { flex: 1, justifyContent: "center", alignItems: "center", height: 70, borderRadius: 20, } }) export default EmptyListCompenent