import './ContactButton.scss'; import React, { Component } from '../../../node_modules/react'; // import { connect } from "react-redux"; // import { bindActionCreators } from "redux"; // import * as contactButtonActions from "../../store/contactButton/actions"; export default class ContactButton extends Component { // constructor(props) { // super(props); // this.state = {}; // } render() { const data = this.props.data; return
; } } // export default connect( // ({ contactButton }) => ({ ...contactButton }), // dispatch => bindActionCreators({ ...contactButtonActions }, dispatch) // )( contactButton );