king
2022-01-20 eff7c5f386577ffd82640d0d71b5cf7f31e010ca
src/menu/components/share/mobPagination/index.jsx
@@ -1,19 +1,20 @@
import React, {Component} from 'react'
import { Icon, Pagination } from 'antd-mobile'
import {Component} from 'react'
// import { Icon, Pagination } from 'antd-mobile'
import './index.scss'
class MobPagination extends Component {
  render () {
    return (
      <Pagination className="mob-pagination" total={5}
        current={1}
        locale={{
          prevText: (<span><Icon type="left" />上一页</span>),
          nextText: (<span>下一页<Icon type="right" /></span>),
        }}
      />
    )
    return null
    // return (
    //   <Pagination className="mob-pagination" total={5}
    //     current={1}
    //     locale={{
    //       prevText: (<span><Icon type="left" />上一页</span>),
    //       nextText: (<span>下一页<Icon type="right" /></span>),
    //     }}
    //   />
    // )
  }
}