import React from 'react'; import { Button, Modal, ModalHeader, ModalBody, ModalFooter } from 'reactstrap'; import EmailForm from './Form'; class ModalExample extends React.Component { constructor(props) { super(props); this.state = { modal: false }; this.toggle = this.toggle.bind(this); } toggle() { this.setState({ modal: !this.state.modal }); } render() { return (
{/* Free Video Consultation */} {/* {' '} */} {/* */}
); } } export default ModalExample;