1
0
mirror of https://github.com/funamitech/mastodon synced 2024-12-05 02:09:05 +09:00
YuruToot/app/javascript/mastodon/features/notifications/containers/notification_container.js

16 lines
460 B
JavaScript
Raw Normal View History

2016-11-21 03:39:18 +09: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)
});
return mapStateToProps;
};
export default connect(makeMapStateToProps)(Notification);