aboutsummaryrefslogtreecommitdiff
path: root/src/screens/main/NotificationsScreen.tsx
diff options
context:
space:
mode:
authorankit-thanekar007 <ankit.thanekar007@gmail.com>2021-05-03 10:23:01 -0700
committerankit-thanekar007 <ankit.thanekar007@gmail.com>2021-05-03 10:23:01 -0700
commitef2c8f57971b6ca55a6a3ef58609b0c80fe55869 (patch)
tree1c5d98fee8a25734a1d39141963005e3898222a9 /src/screens/main/NotificationsScreen.tsx
parent840e144e48fe90b33ce9ab713ca02a696887b8ea (diff)
tma-822-base UI changes
Diffstat (limited to 'src/screens/main/NotificationsScreen.tsx')
-rw-r--r--src/screens/main/NotificationsScreen.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/screens/main/NotificationsScreen.tsx b/src/screens/main/NotificationsScreen.tsx
index 06a61f04..9fbc4cfe 100644
--- a/src/screens/main/NotificationsScreen.tsx
+++ b/src/screens/main/NotificationsScreen.tsx
@@ -28,7 +28,7 @@ import {
import {RootState} from '../../store/rootReducer';
import {NotificationType, ScreenType} from '../../types';
import {getDateAge, normalize, SCREEN_HEIGHT, SCREEN_WIDTH} from '../../utils';
-import EmptyNotificationView from './notification/EmptyNotificationView';
+import EmptyContentView from '../../components/common/EmptyContentView';
const NotificationsScreen: React.FC = () => {
const {newNotificationReceived} = useSelector(
@@ -304,7 +304,7 @@ const NotificationsScreen: React.FC = () => {
extraData={requestLimit}
ListEmptyComponent={
<View style={styles.emptyViewContainer}>
- <EmptyNotificationView viewType={'Notification'} />
+ <EmptyContentView viewType={'Notification'} />
</View>
}
/>