import React from 'react';

const NotFound = () => (
  <div>
    <p>404: Page not found</p>
  </div>
);

export default NotFound;