VipUser.tsx 218 Bytes
Newer Older
zhaoxuanchao's avatar
zhaoxuanchao committed
1 2 3 4 5 6 7 8 9 10 11 12
import React from 'react'
import {Layout} from 'antd'

const { Content } = Layout 

function VipUser(){
  return (
    <Content style={{padding:'0 24px',minHeight:280}}>VIP用户</Content>
  )
}

export default VipUser