This commit is contained in:
mgabdev
2020-02-24 18:25:55 -05:00
parent 7679012e2f
commit 32cd8e622a
62 changed files with 404 additions and 771 deletions

View File

@@ -0,0 +1,20 @@
import ColumnIndicator from '../column_indicator';
// Keep the markup in sync with <BundleModalError />
// (make sure they have the same dimensions)
export default class ModalLoading extends PureComponent {
render() {
return (
<div className='modal-root__modal error-modal'>
<div className='error-modal__body'>
<ColumnIndicator type='loading' />
</div>
<div className='error-modal__footer'>
<div>
<button className='error-modal__nav onboarding-modal__skip' />
</div>
</div>
</div>
);
}
}