/* eslint-disable jsx-a11y/label-has-associated-control */ import { observer } from 'mobx-react'; import * as React from 'react'; import './KeyphraseQueryView.scss'; // tslint:disable-next-line: class-name export interface KP_Props { keyphrases: string; } @observer export class KeyphraseQueryView extends React.Component { render() { const keyterms = this.props.keyphrases.split(','); return (
Select queries to send:
{keyterms.map((kp: string) => ( // return (

{"-" + kp}

);

))}
); } }