mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-08 07:55:14 +00:00
9 lines
230 B
JavaScript
9 lines
230 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);
|