1
0
puyopuyotetr.is/app/javascript/glitch/components/notification/container.js

22 lines
559 B
JavaScript
Raw Normal View History

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