import { CALYPSO_CONTACT } from '@automattic/urls'; import { localize } from 'i18n-calypso'; import { Component, Fragment } from 'react'; import DomainsLandingContentCard from '../content-card'; import DomainsLandingHeader from '../header'; class InvalidActionPage extends Component { render() { const { translate } = this.props; const title = translate( 'Uh oh. Page not found.' ); const message = translate( "If you've arrived here after clicking a link from a WordPress.com email, please {{a}}{{strong}}contact support{{/strong}}{{/a}}.", { components: { a: , strong: , }, } ); return ( ); } } export default localize( InvalidActionPage );