File size: 445 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { useTranslate } from 'i18n-calypso';
import { FunctionComponent } from 'react';

const RewindFlowLoading: FunctionComponent = () => {
	const translate = useTranslate();
	return (
		<>
			<div className="rewind-flow__header">
				<div className="rewind-flow__icon-placeholder" />
			</div>
			<h3 className="rewind-flow__title-placeholder">{ translate( 'Loading restore status…' ) }</h3>
		</>
	);
};

export default RewindFlowLoading;