| 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';
|