import React from 'react'; import _ from 'lodash'; import Styled from './styles'; const DEBOUNCE_TIMEOUT = 5000; const DEBOUNCE_OPTIONS = { leading: true, trailing: false, }; const ReloadButtonComponent = ({ handleReload, label, }) => ( ); export default ReloadButtonComponent;