All files / answers-chart index.js

100% Statements 1/1
100% Branches 0/0
100% Functions 1/1
100% Lines 1/1
1 2 3 4 5 6 7 8 9 10 11 12 13 14        2x                  
import { connect } from 'react-redux';
import AnswersChart from './components/AnswersChart';
 
export default connect(
  state => ({
    loading: state.answersChart.loading,
    answers: state.answersChart.answers,
  }),
)(AnswersChart);
 
export reducer from './reducer';
export Title from './components/Title';
export { Content } from './components/AnswersChart';