import React from "react"; import { RouteComponentProps } from "@reach/router"; import { HomeButton, PageContainer } from "../components"; const NotFound = (props: RouteComponentProps) => ( }>404 Page Not Found ); export { NotFound };