Files
react.dev/src/pages/404.js
2017-12-02 15:25:17 +01:00

33 lines
904 B
JavaScript

/**
* Copyright (c) 2013-present, Facebook, Inc.
*
* @emails react-core
* @flow
*/
import Container from 'components/Container';
import Header from 'components/Header';
import TitleAndMetaTags from 'components/TitleAndMetaTags';
import React from 'react';
import {sharedStyles} from 'theme';
const PageNotFound = () => (
<Container>
<div css={sharedStyles.articleLayout.container}>
<div css={sharedStyles.articleLayout.content}>
<Header>Page Not Found</Header>
<TitleAndMetaTags title="React - Page Not Found" />
<div css={sharedStyles.markdown}>
<p>We couldn't find what you were looking for.</p>
<p>
Please contact the owner of the site that linked you to the original
URL and let them know their link is broken.
</p>
</div>
</div>
</div>
</Container>
);
export default PageNotFound;