import React, {Component} from 'react'; import i18n from 'nfvo-utils/i18n/i18n.js'; import Input from 'nfvo-components/input/validation/ValidationInput.jsx'; import Form from 'nfvo-components/input/validation/ValidationForm.jsx'; class FlowsEditorModalView extends Component { render() { let {onCancel, onDataChanged, currentFlow} = this.props; let {artifactName, description} = currentFlow; return (
this.onSaveClicked()} onReset={onCancel}> onDataChanged({artifactName})}/> onDataChanged({description})}/>
); } onSaveClicked() { let {currentFlow, onSubmit} = this.props; if (onSubmit) { onSubmit(currentFlow); } } } export default FlowsEditorModalView;