forked from ddrilling/asb_cloud_front
10 lines
421 B
React
10 lines
421 B
React
|
import { LoadingOutlined } from '@ant-design/icons'
|
||
|
import { Flex } from '../components/Grid'
|
||
|
|
||
|
export const SuspenseFallback = ({ style }) => (
|
||
|
<Flex style={{ justifyContent: 'center', alignItems: 'center', minHeight: '400px', ...style }}>
|
||
|
<LoadingOutlined />
|
||
|
<div style={{ marginLeft: '10px' }}>Страница загружается, пожалуйста, подождите...</div>
|
||
|
</Flex>
|
||
|
)
|