1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/frontend/src/component/application/application-list-component.js

25 lines
610 B
JavaScript
Raw Normal View History

2016-12-03 15:54:15 +01:00
import React, { Component } from 'react';
import { ProgressBar, Card } from 'react-mdl';
2017-02-14 12:22:24 +01:00
import { AppsLinkList, styles as commonStyles } from '../common';
2016-12-03 15:54:15 +01:00
class ClientStrategies extends Component {
componentDidMount() {
2016-12-05 15:15:01 +01:00
this.props.fetchAll();
2016-12-03 15:54:15 +01:00
}
render() {
const { applications } = this.props;
2016-12-03 15:54:15 +01:00
2016-12-05 15:15:01 +01:00
if (!applications) {
2016-12-10 14:19:52 +01:00
return <ProgressBar indeterminate />;
2016-12-05 15:15:01 +01:00
}
2016-12-03 15:54:15 +01:00
return (
<Card className={commonStyles.fullwidth}>
<AppsLinkList apps={applications} />
</Card>
2016-12-03 15:54:15 +01:00
);
}
}
export default ClientStrategies;