File size: 327 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import { useI18n } from '@wordpress/react-i18n';
import Loading from 'calypso/components/loading';
const ScanningStep: React.FunctionComponent = () => {
const { __ } = useI18n();
return (
<Loading title={ __( 'Scanning your site' ) } subtitle={ __( "We'll be done in no time." ) } />
);
};
export default ScanningStep;
|