import React from 'react'; import classnames from 'classnames'; interface Props { value: string; onChange: (text: string) => void; } type State = { text: String; } class StickerDesc extends React.PureComponent { state = { text: this.props.value, }; setText = e => { this.props.onChange(e.target.value); }; blockMouse = e => { e.stopPropagation(); this.input.focus(); }; input: HTMLTextAreaElement; // todo: pass here locker for moving markers from Sticker.js render() { const { value: text } = this.props; return (
') || ' ') }} />