11 lines
432 B
JavaScript
11 lines
432 B
JavaScript
import { Image } from "antd"
|
|
// import zd from '../../../assets/img/u0.png'
|
|
import zd from '../../../assets/img/wait.png'
|
|
const Page = () => {
|
|
return (
|
|
<div style={{display:'flex',justifyContent:'center',alignItems:'center',backgroundColor:'#fff',height:'100%',padding:'20px'}}>
|
|
<Image src={zd} style={{margin:'auto',margin:'20px',height:'130px'}} preview={false}/>
|
|
</div>
|
|
)
|
|
}
|
|
export default Page |