glitchier-soc/app/javascript/mastodon/features/notifications/containers/notification_container.js

17 lines
504 B
JavaScript
Raw Normal View History

2016-11-20 20:39:18 +02: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),
2017-06-29 08:00:54 +03:00
settings: state.get('local_settings'),
2016-11-20 20:39:18 +02:00
});
return mapStateToProps;
};
export default connect(makeMapStateToProps)(Notification);