import React from 'react' import {View} from 'react-native' import {useFocusEffect} from '@react-navigation/native' import {NativeStackScreenProps, CommonNavigatorParams} from 'lib/routes/types' import {ViewHeader} from '../com/util/ViewHeader' import {useStores} from 'state/index' import {Text} from 'view/com/util/text/Text' import {TextLink} from 'view/com/util/Link' import {CenteredView} from 'view/com/util/Views' import {usePalette} from 'lib/hooks/usePalette' import {s} from 'lib/styles' type Props = NativeStackScreenProps export const SupportScreen = (_props: Props) => { const store = useStores() const pal = usePalette('default') useFocusEffect( React.useCallback(() => { store.shell.setMinimalShellMode(false) }, [store]), ) return ( Support If you need help, email us at{' '} {' '} with a description of your issue and information about how we can help you. ) }