Files
freeCodeCamp/common/app/NotFound/Not-Found.jsx
Quincy Larson 4f0f17892c Fix/copy improvements (#16859)
* fix(seed): Simplify copy of lessons and remove need for image

* rework copy for account creation and login emails

* fix: Fixup email template and lock-file
2018-03-09 19:39:44 +00:00

24 lines
511 B
JavaScript

import React from 'react';
// import PropTypes from 'prop-types';
import { Alert } from 'react-bootstrap';
const propTypes = {};
export default function NotFound() {
return (
<Alert bsStyle='danger'>
<h4>We couldn't find a page for that address.</h4>
<p>
Head back to &thinsp;
<a href='/challenges/current-challenge'>
your current challenge
</a>
.
</p>
</Alert>
);
}
NotFound.displayName = 'NotFound';
NotFound.propTypes = propTypes;