aboutsummaryrefslogtreecommitdiff
path: root/src/components/common
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/common')
-rw-r--r--src/components/common/EmptyContentView.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/common/EmptyContentView.tsx b/src/components/common/EmptyContentView.tsx
index 1416c556..e3aaf621 100644
--- a/src/components/common/EmptyContentView.tsx
+++ b/src/components/common/EmptyContentView.tsx
@@ -11,7 +11,7 @@ import {NOTIFICATION_GRADIENT} from '../../constants/constants';
import {SCREEN_HEIGHT, normalize, SCREEN_WIDTH} from '../../utils';
import {EmptyViewProps} from '../../types/index';
-const EmptyNotificationView: React.FC<EmptyViewProps> = ({viewType}) => {
+const EmptyContentView: React.FC<EmptyViewProps> = ({viewType}) => {
const _getNotificationImage = () => {
return (
<LinearGradient
@@ -126,4 +126,4 @@ const styles = StyleSheet.create({
},
});
-export default EmptyNotificationView;
+export default EmptyContentView;