Lexiconga/src/components/EditWordForm.jsx

24 lines
742 B
JavaScript

import React from 'react';
import {Input} from './Input';
import {TextArea} from './TextArea';
import {WordForm} from './WordForm';
export class EditWordForm extends React.Component {
constructor(props) {
super(props);
}
render() {
return (
<WordForm action='edit'>
<Input name='Word' />
<Input name='Pronunciation' helperLink={{url: "http://r12a.github.io/pickers/ipa/", label: 'IPA Characters', hover:"IPA Character Picker located at http://r12a.github.io/pickers/ipa/"}} />
<Input name='Part of Speech' />
<Input name='Definition/<wbr><b class=wbr></b>Equivalent Word(s)' />
<TextArea name='Explanation/<wbr><b class=wbr></b>Long Definition' />
</WordForm>
);
}
}