mirror of
https://github.com/funamitech/mastodon
synced 2024-12-05 02:09:05 +09: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);
|