openreplay/frontend/app/components/BugFinder/Insights.js
Shekar Siri 2ed5cac986
Webpack upgrade and dependency cleanup (#523)
* change(ui) - webpack update
* change(ui) - api optimize and other fixes
2022-06-03 16:47:38 +02:00

21 lines
626 B
JavaScript

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