/* @flow */ import * as React from 'react'; import { Notification } from 'trezor-ui-components'; import { FormattedMessage } from 'react-intl'; import l10nCommonMessages from 'views/common.messages'; import type { Props } from '../../index'; export default (props: Props) => { const { selectedDevice } = props.wallet; const needsBackup = selectedDevice && selectedDevice.features && selectedDevice.features.needs_backup; if (!needsBackup) return null; return ( } message={} actions={[ { label: ( ), callback: props.routerActions.gotoBackup, }, ]} /> ); };