masto-fe/app/javascript/mastodon/features/notifications/containers/notification_container.js

16 lines
461 B
JavaScript
Raw Normal View History

2016-11-20 18:39:18 +00:00
import { connect } from 'react-redux';
import { makeGetNotification } from '../../../selectors';
import Notification from '../components/notification';
const makeMapStateToProps = () => {
const getNotification = makeGetNotification();
const mapStateToProps = (state, props) => ({
notification: getNotification(state, props.notification, props.accountId),
2016-11-20 18:39:18 +00:00
});
return mapStateToProps;
};
export default connect(makeMapStateToProps)(Notification);