// @flow import * as React from "react"; import DefaultErrorPage from "./DefaultErrorPage.react"; import type { Props as DefaultErrorProps } from "./DefaultErrorPage.react"; function Error404Page({ title = "404", subtitle = "Oops... You just found an error page...", details = "We are sorry but the page you have requested can not be found...", action, }: DefaultErrorProps): React.Node { return ( ); } export default Error404Page;