/** * * Download * */ import * as React from 'react'; import { Button } from 'quinoa-design-library'; import { FormattedMessage } from 'react-intl'; import { useExport } from 'containers/App/hooks'; import messages from './messages'; interface OwnProps { disabled?: boolean; } const Download: React.SFC = (props: OwnProps) => { const [loading, exportCallback] = useExport(); return ( ); }; export default Download;