Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
// @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>
);
};