Remove unneded redux connect code

This commit is contained in:
Karishma Chadha 2021-06-11 15:58:22 -04:00
parent c773018c8e
commit 85beabad19

View file

@ -1,6 +1,5 @@
import React from 'react';
import PropTypes from 'prop-types';
import {connect} from 'react-redux';
import Button from '../../components/forms/button.jsx';
const StudioInfoBox = ({showInfoBox, onClose, ...props}) => {
@ -24,8 +23,4 @@ StudioInfoBox.propTypes = {
children: PropTypes.node
};
const mapStateToProps = () => ({});
const mapDispatchToProps = () => ({});
export default connect(mapStateToProps, mapDispatchToProps)(StudioInfoBox);
export default StudioInfoBox;