import { faDizzy } from "@fortawesome/free-regular-svg-icons"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import React, { FunctionComponent } from "react"; import { Button, Container } from "react-bootstrap"; import { Reload } from "utilities"; import { GithubRepoRoot } from "utilities/constants"; interface Props { error: Error; } const UIError: FunctionComponent = ({ error }) => (

Oops! UI is crashed!

{error.message}

); export default UIError;