3 changed files with 20 additions and 1 deletions
@ -1,7 +1,15 @@ |
|||||
import { Skeleton } from 'antd'; |
import { Skeleton } from 'antd'; |
||||
|
|
||||
const Loading: React.FC = () => ( |
const Loading: React.FC = () => ( |
||||
<Skeleton style={{ margin: '24px 40px', height: '60vh' }} active /> |
<Skeleton |
||||
|
style={{ |
||||
|
margin: '24px 40px', |
||||
|
height: '60vh', |
||||
|
maxWidth: '100%', |
||||
|
boxSizing: 'border-box', |
||||
|
}} |
||||
|
active |
||||
|
/> |
||||
); |
); |
||||
|
|
||||
export default Loading; |
export default Loading; |
||||
|
|||||
Loading…
Reference in new issue