UNPKG

metadata-based-explorer1

Version:
21 lines (16 loc) 391 B
/** * @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;