import React from "react" import { Result, Button } from "antd" import "./index.less" export const CrashComponent = (props) => { const { crash = { details: "Unknown error", } } = props return window.location.reload()}> Reload app ]} > {crash.details &&
{crash.details}
}
} export const CrashWrapper = (props) => { const { crash } = props return
} export default CrashComponent