You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
559 B
22 lines
559 B
7 years ago
|
// Package imports //
|
||
8 years ago
|
import { connect } from 'react-redux';
|
||
7 years ago
|
|
||
|
// Mastodon imports //
|
||
|
import { makeGetNotification } from '../../../mastodon/selectors';
|
||
|
|
||
|
// Our imports //
|
||
7 years ago
|
import Notification from '.';
|
||
8 years ago
|
|
||
|
const makeMapStateToProps = () => {
|
||
|
const getNotification = makeGetNotification();
|
||
|
|
||
|
const mapStateToProps = (state, props) => ({
|
||
8 years ago
|
notification: getNotification(state, props.notification, props.accountId),
|
||
7 years ago
|
settings: state.get('local_settings'),
|
||
8 years ago
|
});
|
||
|
|
||
|
return mapStateToProps;
|
||
|
};
|
||
|
|
||
|
export default connect(makeMapStateToProps)(Notification);
|