Repository URL to install this package:
|
Version:
3.12.20 ▾
|
import { usePlugin } from '@filerobot/core/lib/hooks';
import { PLUGINS_IDS } from '@filerobot/utils/lib/constants';
import DownloadStatusBar from './DownloadStatusBar';
import { jsx as _jsx } from "react/jsx-runtime";
var StatusBars = function StatusBars() {
var statusBar = usePlugin(PLUGINS_IDS.EXPLORER_STATUS_BAR);
if (!statusBar) return null;
return /*#__PURE__*/_jsx(DownloadStatusBar, {
statusBar: statusBar
});
};
export default StatusBars;