liquid-funding/app/components/base/Loading.jsx

17 lines
604 B
JavaScript

import React from 'react'
import Typography from '@material-ui/core/Typography'
import './Loading.css'
function Loading() {
return (
<div className="Loading-container">
<img className="Loading-logo" id="loading" src="https://our.status.im/content/images/2018/07/status_logo_blue_1--2-.png" />
<Typography style={{ fontSize: '1.5rem' }}>Hold on while we gather the latest information</Typography>
<Typography style={{ fontSize: '1.2rem' }}>If this is your first visit it will take about a minute while we sync with the chain</Typography>
</div>
)
}
export default Loading