metadata-based-explorer1
Version:
Box UI Elements
21 lines (16 loc) • 391 B
Flow
/**
* @flow
* @file Open With fallback button
* @author Box
*/
import * as React from 'react';
import OpenWithButton from './OpenWithButton';
type Props = {
error: ElementsError,
};
const OpenWithFallbackButton = ({ error }: Props) => (
<div className="be bcow">
<OpenWithButton error={error} isLoading={false} />
</div>
);
export default OpenWithFallbackButton;