2024-09-23 09:43:16 +08:00
|
|
|
import { Image } from "antd"
|
2024-09-23 14:06:03 +08:00
|
|
|
import zd from '../../../assets/img/u0.png'
|
2024-09-23 09:43:16 +08:00
|
|
|
const Page = () => {
|
|
|
|
|
return (
|
2024-09-23 14:06:03 +08:00
|
|
|
<div style={{display:'flex',justifyContent:'center',alignItems:'center',backgroundColor:'#fff',height:'100%'}}>
|
|
|
|
|
<Image src={zd} style={{margin:'auto'}} preview={false}/>
|
|
|
|
|
</div>
|
2024-09-23 09:43:16 +08:00
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
export default Page
|