File size: 430 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
// @flow
import React from 'react';
import { Loading } from 'src/components/loading';
import { ViewGrid, CenteredGrid } from 'src/components/layout';
import { Stretch } from './style';
export const LoadingView = () => {
return (
<React.Fragment>
<ViewGrid>
<CenteredGrid>
<Stretch>
<Loading />
</Stretch>
</CenteredGrid>
</ViewGrid>
</React.Fragment>
);
};
|