mastodon/app/javascript/glitch/containers/notification/index.js

22 lines
587 B
JavaScript
Raw Normal View History

// Package imports //
2016-11-20 18:39:18 +00:00
import { connect } from 'react-redux';
// Mastodon imports //
import { makeGetNotification } from '../../../mastodon/selectors';
// Our imports //
import Notification from '../../components/notification';
2016-11-20 18:39:18 +00:00
const makeMapStateToProps = () => {
const getNotification = makeGetNotification();
const mapStateToProps = (state, props) => ({
notification: getNotification(state, props.notification, props.accountId),
2017-06-29 05:00:54 +00:00
settings: state.get('local_settings'),
2016-11-20 18:39:18 +00:00
});
return mapStateToProps;
};
export default connect(makeMapStateToProps)(Notification);