import React from "react";

const ErrorPage = () => {
	return (
		<div className="home">
			<h1>Uh oh, that's a 404</h1>
			<h1>We weren't able to find that page for you</h1>
		</div>
	);
};

export default ErrorPage;
