mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-19 13:38:03 -08:00
8 lines
227 B
JavaScript
8 lines
227 B
JavaScript
|
|
import { connect } from 'react-redux';
|
||
|
|
import Poll from 'mastodon/components/poll';
|
||
|
|
|
||
|
|
const mapStateToProps = (state, { pollId }) => ({
|
||
|
|
poll: state.getIn(['polls', pollId]),
|
||
|
|
});
|
||
|
|
|
||
|
|
export default connect(mapStateToProps)(Poll);
|