You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
571 B
24 lines
571 B
5 years ago
|
import PropTypes from 'prop-types'
|
||
|
import React, { Component } from 'react'
|
||
|
import MetaFoxLogo from '../../../components/ui/metafox-logo'
|
||
|
|
||
|
export default class PermissionsConnectHeader extends Component {
|
||
|
static propTypes = {
|
||
|
page: PropTypes.number.isRequired,
|
||
|
}
|
||
|
|
||
|
render () {
|
||
|
const { page } = this.props
|
||
|
return (
|
||
|
<div className="permissions-connect-header">
|
||
|
<MetaFoxLogo
|
||
|
unsetIconHeight
|
||
|
/>
|
||
|
<div className="permissions-connect-header__page-count">
|
||
|
{ `${page}/2` }
|
||
|
</div>
|
||
|
</div>
|
||
|
)
|
||
|
}
|
||
|
}
|