/* eslint-disable no-console */ import React, { Component } from 'react'; import { Button } from '../../components'; import Modal from './Modal'; const togglePageClassNames = (className, addClass = true) => { // We are just checking the value for now console.log('Toggling Modal - pageClassName currently:', className, addClass); }; class ModalWrapper extends Component { constructor(props) { super(props); this.state = { isOpen: false }; this.handleOpen = this.handleOpen.bind(this); } handleOpen() { this.setState({ isOpen: true }); } render() { return (