import React, { Component } from 'react'; import { List, ListItem, ListItemContent } from 'react-mdl'; import { Link } from 'react-router'; class ClientStrategies extends Component { componentDidMount () { this.props.fetchAll(); } render () { const { applications, } = this.props; if (!applications) { return
loading...
; } return (
Applications

{applications.map(({ appName, data = {} }) => ( {appName} ))}
); } } export default ClientStrategies;