mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
ac9780b844
Port 795f0107d23c1c9bd039f6449fa1e094ab7653a7 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);
|