about summary refs log tree commit diff
path: root/app/javascript/glitch/containers/notification/index.js
diff options
context:
space:
mode:
authorkibigo! <marrus-sh@users.noreply.github.com>2017-07-13 02:40:16 -0700
committerkibigo! <marrus-sh@users.noreply.github.com>2017-07-13 02:40:16 -0700
commit5770d461b21cf5b6a8adcaa44d19832e11289960 (patch)
tree3a72b457fc0303dad71a68d7c0a01e7f736124fd /app/javascript/glitch/containers/notification/index.js
parent2e0645c26c0738b37b6847142d47f6391c2cd40c (diff)
Moved glitch containers and commented unused files
Diffstat (limited to 'app/javascript/glitch/containers/notification/index.js')
-rw-r--r--app/javascript/glitch/containers/notification/index.js21
1 files changed, 0 insertions, 21 deletions
diff --git a/app/javascript/glitch/containers/notification/index.js b/app/javascript/glitch/containers/notification/index.js
deleted file mode 100644
index 783c838ae..000000000
--- a/app/javascript/glitch/containers/notification/index.js
+++ /dev/null
@@ -1,21 +0,0 @@
-//  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);