blob: 81f00401022c712cf35ad0bc2fcd9049b996c4ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/* 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<KP_Props> {
render() {
const keyterms = this.props.keyphrases.split(',');
return (
<div>
<h5>Select queries to send:</h5>
<form>
{keyterms.map((kp: string) => (
// return (<p>{"-" + kp}</p>);
<p>
<label>
<input name="query" type="radio" />
<span>{kp}</span>
</label>
</p>
))}
</form>
</div>
);
}
}
|