/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ import React from "react"; type Props = { message: string; onRestart: () => void; }; export default class ErrorMessage extends React.Component { render() { return (

Something went wrong

{this.props.message}

); } }