1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 // import * as React from 'react';
6 // import { LinearProgress } from '@material-ui/core';
7 // import { withProgress } from '~/store/progress-indicator/with-progress';
8 // import { WithProgressStateProps } from '~/store/progress-indicator/with-progress';
9 // import { ProgressIndicatorData } from '~/store/progress-indicator/progress-indicator-reducer';
11 // export const WorkbenchProgress = withProgress(ProgressIndicatorData.WORKBENCH_PROGRESS)(
12 // (props: WithProgressStateProps) =>
13 // props.started ? <LinearProgress color="secondary" /> : null