43e384554c
• Remove: - React, PureComponent global import and added those imports to files directly
24 lines
603 B
JavaScript
24 lines
603 B
JavaScript
import React from 'react'
|
|
import Block from '../block'
|
|
import ColumnIndicator from '../column_indicator'
|
|
|
|
export default class LoadingModal extends React.PureComponent {
|
|
|
|
render() {
|
|
return (
|
|
<div className={_s.width330PX}>
|
|
<Block>
|
|
<div className={[_s.default, _s.px15, _s.py15, _s.mt15, _s.mb15].join(' ')}>
|
|
<div className={[_s.default, _s.px15, _s.py15, _s.mt15, _s.mb15, _s.alignItemsCenter, _s.justifyContentCenter].join(' ')}>
|
|
|
|
<ColumnIndicator type='loading' />
|
|
|
|
</div>
|
|
</div>
|
|
</Block>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
}
|