import React, {Component} from 'react'; import {Link} from 'react-router-dom'; import {Col, Row} from 'reactstrap'; import {dashboardTexts} from '../../../constants/dashboardConstants'; class NextActionItem extends Component { render() { const {nextAction} = this.props; return ( {nextAction.step_action}
{dashboardTexts.statuses[nextAction.status]}
); } } export default NextActionItem;