import React from 'react';
-import { connect } from 'react-redux';
import PropTypes from 'prop-types';
import ImmutablePropTypes from 'react-immutable-proptypes';
import LoadingIndicator from 'flavours/glitch/components/loading_indicator';
import ImmutablePureComponent from 'react-immutable-pure-component';
import ColumnLink from 'flavours/glitch/features/ui/components/column_link';
import ColumnSubheading from 'flavours/glitch/features/ui/components/column_subheading';
-import { createSelector } from 'reselect';
+import { openModal } from 'flavours/glitch/actions/modal';
const messages = defineMessages({
heading: { id: 'column.heading', defaultMessage: 'Misc' },
static propTypes = {
intl: PropTypes.object.isRequired,
+ dispatch: PropTypes.func.isRequired,
};
openOnboardingModal = (e) => {