about summary refs log tree commit diff
path: root/app/javascript/mastodon/features/notifications/containers/notification_container.js
blob: 4ca1b1b7beff08fd6c01345e33a0231a248ecbbc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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);