diff --git a/app/javascript/gabsocial/features/ui/components/promo_panel.js b/app/javascript/gabsocial/features/ui/components/promo_panel.js index 2cb47fa3..c0bc9405 100644 --- a/app/javascript/gabsocial/features/ui/components/promo_panel.js +++ b/app/javascript/gabsocial/features/ui/components/promo_panel.js @@ -1,32 +1,29 @@ import React from 'react'; -import PropTypes from 'prop-types'; -import { connect } from 'react-redux'; -import { Link } from 'react-router-dom'; -import { injectIntl, FormattedMessage } from 'react-intl'; -import { me } from '../../../initial_state'; -import { makeGetAccount } from '../../../selectors'; -import ImmutablePropTypes from 'react-immutable-proptypes'; +import { FormattedMessage } from 'react-intl'; import Icon from 'gabsocial/components/icon'; -const PromoPanel = () => ( -
-
+export default class PromoPanel extends React.PureComponent { + render() { + return ( +
+
-
- - - - -

- -

+ + + + +
- -
-
-); - -export default PromoPanel; + ) + } +} \ No newline at end of file