Auth page done

This commit is contained in:
2022-04-25 17:47:24 -03:00
parent 32404d1104
commit bf31475316
17 changed files with 453 additions and 102 deletions

View File

@@ -0,0 +1,31 @@
import React from 'react'
import styled from 'styled-components'
import {DotSpinner} from '@uiball/loaders'
const Loading = () => {
const Styles = styled.div`
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
box-sizing: border-box;
padding-bottom: 20vh;
* {
width: 10vw !important;
height: 10vw !important;
}
`
return (
<Styles>
<DotSpinner color="#4797ff"/>
</Styles>
)
}
export default Loading