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