unl editing component added
This commit is contained in:
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> {
|
class LexEntry extends React.Component<any, any> {
|
||||||
public render() {
|
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>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user