about summary refs log tree commit diff
path: root/app/javascript/glitch/containers/notification/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/javascript/glitch/containers/notification/index.js')
-rw-r--r--app/javascript/glitch/containers/notification/index.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/app/javascript/glitch/containers/notification/index.js b/app/javascript/glitch/containers/notification/index.js
new file mode 100644
index 000000000..783c838ae
--- /dev/null
+++ b/app/javascript/glitch/containers/notification/index.js
@@ -0,0 +1,21 @@
+//  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);