mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-10 08:54:40 +00:00
9 lines
231 B
JavaScript
9 lines
231 B
JavaScript
import { connect } from 'react-redux';
|
|
import Card from '../components/card';
|
|
|
|
const mapStateToProps = (state, { statusId }) => ({
|
|
card: state.getIn(['cards', statusId], null),
|
|
});
|
|
|
|
export default connect(mapStateToProps)(Card);
|