1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-20 00:08:02 +01:00

add progressbar

This commit is contained in:
sveisvei 2016-12-12 13:48:14 +01:00
parent 0958a98669
commit 12a7b420ea

View File

@ -1,4 +1,5 @@
import React, { PropTypes } from 'react';
import { ProgressBar } from 'react-mdl';
import StrategiesList from './strategies-list';
import AddStrategy from './strategies-add';
import { HeaderTitle } from '../../common';
@ -21,7 +22,7 @@ class StrategiesSection extends React.Component {
render () {
if (!this.props.strategies || this.props.strategies.length === 0) {
return <i>Loding available strategies</i>;
return <ProgressBar indeterminate />;
}
return (