import { connect } from 'react-redux';
import styles from './insights.css';
const Insights = ({ insights }) => (
{'This journey is only 2% of all the journeys but represents 20% of problems.'}
{'Lorem Ipsum 1290 events of 1500 events.'}
);
Insights.displayName = 'Insights';
export default connect(state => ({
insights: state.getIn([ 'sessions', 'insights' ]),
}))(Insights);