forgeplus-react/src/Loading.js

12 lines
262 B
JavaScript
Raw Normal View History

2020-03-16 14:12:11 +08:00
import React, { Component } from 'react';
import { Spin } from 'antd';
class Loading extends Component {
2020-04-28 17:23:34 +08:00
render() {
2023-09-06 15:09:09 +08:00
return <div style={{height:"100vh",display:"flex",alignItems:"center",justifyContent:"center"}}><Spin /></div>
2020-04-28 17:23:34 +08:00
}
2020-03-16 14:12:11 +08:00
}
export default Loading;