All Downloads are FREE. Search and download functionalities are using the official Maven repository.

components.core.Page404.jsx Maven / Gradle / Ivy

The newest version!
import React, { PureComponent } from 'react'
import { withTranslation } from 'react-i18next'
import PropTypes from 'prop-types'

class Page404 extends PureComponent {
    render() {
        const { t } = this.props

        return 

{t('pageNotFound')}

} } Page404.propTypes = { t: PropTypes.func, } Page404.defaultProps = {} export default withTranslation()(Page404)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy