Vulcan/packages/nova-base-components/lib/common/Error404.jsx

14 lines
266 B
React
Raw Normal View History

import React from 'react';
2016-03-28 10:55:19 +09:00
const Error404 = () => {
return (
<div className="error404">
<h3>Sorry, we couldn't find what you were looking for.</h3>
</div>
)
}
Error404.displayName = "Error404";
2016-03-28 10:55:19 +09:00
module.exports = Error404;
export default Error404;