import React from 'react' import { View, Text, StyleSheet, Image } from 'react-native' import { useSelector } from 'react-redux'; import Theme from '../../../../components/theme.style.js'; const Empty = () => { const app_theme = useSelector(state => state.appThemeReducer.theme); return ( No Station Yet ) } export default Empty const styles = StyleSheet.create({ container: { flex: 1, }, emptyContainer: { paddingHorizontal: 30, alignItems: 'center' }, emptyImage: { width: '100%', resizeMode: 'contain' }, emptyText: (theme) => { return { color: theme?.theme.dark ? theme.theme.colors.text : Theme.colors.searchGray, marginTop: -(Theme.screen.w * .15) } } })