public render()

in src/components/tagsInput/tagsInput.tsx [80:99]


    public render() {
        const { tags } = this.state;

        return (
            <div>
                <ReactTags
                    ref={"reactTagsInput"}
                    tags={this.toReactTags(this.state.tags)}
                    placeholder={this.props.placeHolder || defaultValues.placeHolder}
                    autofocus={false}
                    allowAdditionFromPaste={false}
                    handleDelete={this.handleDelete}
                    handleAddition={this.handleAddition}
                    handleDrag={this.handleDrag}
                    id={"tagInputField"}
                    delimiters={this.props.delimiters || defaultValues.delimiters}
                />
            </div>
        );
    }