mirror of
https://github.com/HSLdevcom/digitransit-ui
synced 2025-07-06 01:00:37 +02:00
17 lines
376 B
JavaScript
17 lines
376 B
JavaScript
import React from 'react';
|
|
import { FormattedMessage } from 'react-intl';
|
|
import Loading from '../Loading';
|
|
|
|
const OverlayWithSpinner = () => (
|
|
<div className="overlay-with-spinner">
|
|
<div>
|
|
<Loading />
|
|
</div>
|
|
<FormattedMessage
|
|
id="searching-position"
|
|
defaultMessage="Detecting location..."
|
|
/>
|
|
</div>
|
|
);
|
|
|
|
export default OverlayWithSpinner;
|