mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-10 08:54:40 +00:00
22 lines
587 B
JavaScript
22 lines
587 B
JavaScript
// Package imports //
|
|
import { connect } from 'react-redux';
|
|
|
|
// Mastodon imports //
|
|
import { makeGetNotification } from '../../../mastodon/selectors';
|
|
|
|
// Our imports //
|
|
import Notification from '../../components/notification';
|
|
|
|
const makeMapStateToProps = () => {
|
|
const getNotification = makeGetNotification();
|
|
|
|
const mapStateToProps = (state, props) => ({
|
|
notification: getNotification(state, props.notification, props.accountId),
|
|
settings: state.get('local_settings'),
|
|
});
|
|
|
|
return mapStateToProps;
|
|
};
|
|
|
|
export default connect(makeMapStateToProps)(Notification);
|