/* global window */ import React from 'react'; import ReactDOM from 'react-dom'; import TagField from 'components/TagField'; window.jQuery.entwine('ss', ($) => { $('.js-injector-boot .ss-tag-field').entwine({ onmatch() { const dataSchema = { ...this.data('schema'), onBlur: () => { this.parents('.cms-edit-form:first').trigger('change'); } }; ReactDOM.render( , this[0] ); }, onunmatch() { ReactDOM.unmountComponentAtNode(this[0]); } }); });