index.js 378 Bytes
Newer Older
FE committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
import React from 'react'
import WxErrImage from '@assets/image/wx_error.png'
import './wxerr.scss'

const WxErr = () => {
  return (
    <div className={'wxerr'}>
      <img src={WxErrImage} alt=''/>
      <p className="openLink" style={{
        fontSize: `16px`,
        marginTop: `40px`
      }}>请在微信客户端打开链接</p>
    </div>
  )
}

export default WxErr