2017-07-14 22:18:07 +08:00
|
|
|
import React from 'react';
|
2021-10-29 01:58:04 +08:00
|
|
|
import Styled from './styles';
|
2016-07-29 03:49:16 +08:00
|
|
|
|
2017-07-14 22:18:07 +08:00
|
|
|
const LoadingScreen = ({ children }) => (
|
2021-10-29 01:58:04 +08:00
|
|
|
<Styled.Background>
|
2024-03-07 01:28:18 +08:00
|
|
|
<Styled.Spinner animations>
|
|
|
|
<Styled.Bounce1 animations />
|
|
|
|
<Styled.Bounce2 animations />
|
2018-12-10 09:08:16 +08:00
|
|
|
<div />
|
2021-10-29 01:58:04 +08:00
|
|
|
</Styled.Spinner>
|
|
|
|
<Styled.Message>
|
2017-07-14 22:18:07 +08:00
|
|
|
{children}
|
2021-10-29 01:58:04 +08:00
|
|
|
</Styled.Message>
|
|
|
|
</Styled.Background>
|
2017-07-14 22:18:07 +08:00
|
|
|
);
|
|
|
|
|
2016-07-29 03:49:16 +08:00
|
|
|
export default LoadingScreen;
|