import React from 'react'; import PropTypes from 'prop-types'; import { withTranslation } from 'react-i18next'; class PageTree extends React.Component { static propTypes = { t: PropTypes.func.isRequired, // i18next }; render() { const { t } = this.props; return ( <>