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

12 lines
230 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>
)
}
module.exports = Error404;
export default Error404;