unl editing component added
parent
8e0bd3e647
commit
7b7f3ab1d3
19
src/App.tsx
19
src/App.tsx
|
|
@ -124,7 +124,24 @@ class LexMatches extends React.Component<any, any> {
|
|||
|
||||
class LexEntry extends React.Component<any, any> {
|
||||
public render() {
|
||||
return null;
|
||||
return (
|
||||
<div className="pt-form-group">
|
||||
<label className="pt-label" htmlFor="example-form-group-input-a">
|
||||
UNL
|
||||
</label>
|
||||
<div className="pt-form-content">
|
||||
<input
|
||||
id="example-form-group-input-a"
|
||||
className="pt-input"
|
||||
style={{ width: '300px' }}
|
||||
placeholder="UNL Value"
|
||||
value={this.props.lexItem.unl}
|
||||
type="text"
|
||||
dir="auto"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue