import Timeline from '@components/Timelines/Timeline' import sharedScreens from '@screens/Shared/sharedScreens' import { getLocalActiveIndex } from '@utils/slices/instancesSlice' import React from 'react' import { useTranslation } from 'react-i18next' import { createNativeStackNavigator } from 'react-native-screens/native-stack' import { useSelector } from 'react-redux' const Stack = createNativeStackNavigator() const ScreenNotifications: React.FC = () => { const { t } = useTranslation() const localActiveIndex = useSelector(getLocalActiveIndex) return ( {() => localActiveIndex !== null ? : null } {sharedScreens(Stack)} ) } export default ScreenNotifications