github.com/muhammedhassanm/blockchain@v0.0.0-20200120143007-697261defd4d/build-blockchain-insurance-app-master/web/src/shared/NotFoundPage.js (about)

     1  'use strict';
     2  
     3  import React from 'react';
     4  import { FormattedMessage } from 'react-intl';
     5  
     6  const NotFoundPage = () => {
     7    return (
     8      <div className='row'>
     9        <div className='small-12 columns'>
    10          <h3 style={{ color: 'red' }}>
    11            <FormattedMessage id='Page Not Found!' />
    12          </h3>
    13        </div>
    14      </div>
    15    );
    16  };
    17  
    18  export default NotFoundPage;