You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
499 B
28 lines
499 B
import React, { Component } from 'react';
|
|
|
|
import { BrowserRouter as Router, Route, Link } from "react-router-dom";
|
|
|
|
import { Spin } from 'antd';
|
|
|
|
class Loading extends Component {
|
|
render() {
|
|
// Loading
|
|
return (
|
|
<div className="App" style={{minHeight: '800px',width:"100%"}}>
|
|
<style>
|
|
{
|
|
`
|
|
.margintop{
|
|
margin-top:20%;
|
|
}
|
|
`
|
|
}
|
|
</style>
|
|
<Spin size="large" className={"margintop"}/>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default Loading;
|