import {View} from 'react-native' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {atoms as a, useBreakpoints} from '#/alf' import {Button, ButtonText} from '#/components/Button' import {Text} from '#/components/Typography' import {FormContainer} from './FormContainer' export const PasswordUpdatedForm = ({ onPressNext, }: { onPressNext: () => void }) => { const {_} = useLingui() const {gtMobile} = useBreakpoints() return ( Password updated! You can now sign in with your new password. ) }