2016-03-30 09:24:52 +09:00
|
|
|
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;
|