/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @format */ import {Button, Typography} from 'antd'; import {Layout, Spinner} from 'flipper-plugin'; import React from 'react'; const {Text} = Typography; export default function (props: { statusMessage: string; statusUpdate: string | null; hideNavButtons?: boolean; onCancel?: () => void; width?: number; }) { return ( {props.statusUpdate && props.statusUpdate.length > 0 ? ( {props.statusUpdate} ) : ( {props.statusMessage} )} {!props.hideNavButtons && props.onCancel && (
)} ); }