import React from 'react'; import { connect } from 'react-redux'; import { listShortUrls } from './reducers/shortUrlsList'; import { isEmpty } from 'ramda'; export class ShortUrlsList extends React.Component { componentDidMount() { const { match } = this.props; this.props.listShortUrls(match.params.serverId); } render() { return (