/* eslint-disable react/prop-types */ import React from 'react'; import { Segment } from 'semantic-ui-react'; import { connect } from 'react-redux'; import GraphStatsContainer from './GraphStatsContainer'; import AnswersListComponent from './AnswersListComponent'; const KendraAnswersArea = ({ linkClicked }) => (
{/* {linkClicked != null && } */}
); function mapStateToProps(state) { return { linkClicked: state.clicked_link, }; } export default connect(mapStateToProps)(KendraAnswersArea);