mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-02 04:54:25 +00:00
8d70a8a19b
Port front-end parts of 230a012f00
to glitch-soc
9 lines
227 B
JavaScript
9 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);
|