/* @flow */ import React from 'react'; import styled from 'styled-components'; import { Notification } from 'components/Notification'; const Wrapper = styled.div` min-width: 720px; width: 100%; `; const InitializationError = (props: { error: ?string }) => ( ); export default InitializationError;