import React, { PropTypes, Component } from 'react' import { connect } from 'react-redux' import {closeFlowEditor} from '../../ducks/ui.js' import {openFlowEditor} from '../../ducks/ui.js' // FlowEditorButton.propTypes = { // isFlowEditorOpen: PropTypes.bool.isRequired, // content: PropTypes.string.isRequired, // onContentChange: PropTypes.func.isRequired // } class FlowEditorButton extends Component{ static propTypes = { isFlowEditorOpen: PropTypes.bool.isRequired, content: PropTypes.string.isRequired, onContentChange: PropTypes.func.isRequired } render(){ let { isFlowEditorOpen, closeFlowEditor, openFlowEditor, onContentChange, content } = this.props return (