import {FormattedMessage} from 'react-intl'; import PropTypes from 'prop-types'; import classNames from 'classnames'; import React from 'react'; import Box from '../box/box.jsx'; import Dots from './dots.jsx'; import helpIcon from './icons/help.svg'; import backIcon from './icons/back.svg'; import styles from './connection-modal.css'; const ErrorStep = props => (
); ErrorStep.propTypes = { connectionIconURL: PropTypes.string.isRequired, onHelp: PropTypes.func, onScanning: PropTypes.func }; export default ErrorStep;