import React from 'react'; import { Linking } from 'react-native'; import * as List from '../../../containers/List'; import { useTheme } from '../../../theme'; export default function NotificationDelay(): React.ReactElement { const { colors } = useTheme(); const openNotificationDocumentation = () => Linking.openURL('https://go.rocket.chat/i/push-notifications'); return ( } testID='push-troubleshoot-view-notification-delay' /> ); }