/* @flow */ import * as React from 'react'; import Notification from 'components/Notification'; import Bignumber from 'bignumber.js'; import type { Props } from '../../index'; export default (props: Props) => { const { selectedAccount } = props; const { account } = selectedAccount; const { location } = props.router; const notifications: Array = []; if (!location || !selectedAccount || !account) return null; // Ripple minimum reserve notification if (account.networkType === 'ripple') { const { reserve, balance } = account; const bigBalance = new Bignumber(balance); const bigReserve = new Bignumber(reserve); if (bigBalance.isLessThan(bigReserve)) { notifications.push( , ); } } return ( {notifications} ); };