side-panel-progress
[arvados-workbench2.git] / src / views-components / progress / workbench-progress.tsx
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
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';
10
11 // export const WorkbenchProgress = withProgress(ProgressIndicatorData.WORKBENCH_PROGRESS)(
12 //     (props: WithProgressStateProps) =>
13 //         props.started ? <LinearProgress color="secondary" /> : null
14 // );