File size: 431 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import React from 'react';
import { Spinner, LockBody, ReleaseBody, Picture } from './styles/loading';
export default function Loading({ src, ...restProps }) {
return (
<Spinner {...restProps}>
<LockBody />
<Picture src={`/images/users/${src}.png`} data-testid="loading-picture" />
</Spinner>
);
}
Loading.ReleaseBody = function LoadingReleaseBody() {
return <ReleaseBody />;
} |