mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-11 21:43:15 -08:00
8 lines
234 B
JavaScript
8 lines
234 B
JavaScript
import { connect } from 'react-redux';
|
|
import Poll from 'flavours/glitch/components/poll';
|
|
|
|
const mapStateToProps = (state, { pollId }) => ({
|
|
poll: state.getIn(['polls', pollId]),
|
|
});
|
|
|
|
export default connect(mapStateToProps)(Poll);
|