import React, { Component } from 'react'; import { AppsLinkList, HeaderTitle } from '../common'; class ClientStrategies extends Component { componentDidMount () { this.props.fetchAll(); } render () { const { applications, } = this.props; if (!applications) { return
Loading...
; } return (
); } } export default ClientStrategies;