/* @flow */ import * as React from 'react'; import { Notification } from 'trezor-ui-components'; import type { Props } from '../../index'; import l10nMessages from './index.messages'; export default (props: Props) => { const { online } = props.wallet; if (online) return null; return ( ); };