king
2021-07-18 d9e822b0f72f8e232c7836f366e80bf3be25c4d8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import React, {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>),
        }}
      />
    )
  }
}
 
export default MobPagination