/* @flow */ import { Notification } from 'components/Notification'; import type { Props } from '../../index'; export default (props: Props) => { const { location } = props.router; if (!location) return null; const notifications: Array = []; // if (location.state.device) { // notifications.push(); // } return notifications; };