//@flow import React from "react"; import ErrorNotification from "./ErrorNotification"; type Props = { error: Error, title: string, subtitle: string }; class ErrorPage extends React.Component { render() { const { title, subtitle, error } = this.props; return (

{title}

{subtitle}

); } } export default ErrorPage;