cleanup
This commit is contained in:
parent
221362745f
commit
35a5c3d3a5
|
@ -14,10 +14,10 @@ const tenseOptions: { label: string | JSX.Element, value: VerbTense }[] = [{
|
||||||
label: <div><i className="fas fa-camera mr-2" />subjunctive</div>,
|
label: <div><i className="fas fa-camera mr-2" />subjunctive</div>,
|
||||||
value: "subjunctiveVerb",
|
value: "subjunctiveVerb",
|
||||||
}, {
|
}, {
|
||||||
label: <div><i className="fas fa-video mr-2" />imperf. future</div>,
|
label: <div><i className="fas fa-video mr-2" />imperfective future</div>,
|
||||||
value: "imperfectiveFuture",
|
value: "imperfectiveFuture",
|
||||||
}, {
|
}, {
|
||||||
label: <div><i className="fas fa-camera mr-2" />perf. future</div>,
|
label: <div><i className="fas fa-camera mr-2" />perfective future</div>,
|
||||||
value: "perfectiveFuture",
|
value: "perfectiveFuture",
|
||||||
}, {
|
}, {
|
||||||
label: <div><i className="fas fa-video mr-2" />continuous past</div>,
|
label: <div><i className="fas fa-video mr-2" />continuous past</div>,
|
||||||
|
@ -26,10 +26,10 @@ const tenseOptions: { label: string | JSX.Element, value: VerbTense }[] = [{
|
||||||
label: <div><i className="fas fa-camera mr-2" />simple past</div>,
|
label: <div><i className="fas fa-camera mr-2" />simple past</div>,
|
||||||
value: "perfectivePast",
|
value: "perfectivePast",
|
||||||
}, {
|
}, {
|
||||||
label: <div><i className="fas fa-video mr-2" />habitual cont. past</div>,
|
label: <div><i className="fas fa-video mr-2" />habitual continual past</div>,
|
||||||
value: "habitualImperfectivePast",
|
value: "habitualImperfectivePast",
|
||||||
}, {
|
}, {
|
||||||
label: <div><i className="fas fa-camera mr-2" />habitual simp. past</div>,
|
label: <div><i className="fas fa-camera mr-2" />habitual simple past</div>,
|
||||||
value: "habitualPerfectivePast",
|
value: "habitualPerfectivePast",
|
||||||
}];
|
}];
|
||||||
|
|
||||||
|
|
|
@ -68,10 +68,6 @@ export function PhraseBuilder(props: {
|
||||||
const verbPhrase: VPSelection | undefined = verbPhraseComplete({ subject, verb });
|
const verbPhrase: VPSelection | undefined = verbPhraseComplete({ subject, verb });
|
||||||
const VPRendered = verbPhrase && renderVP(verbPhrase);
|
const VPRendered = verbPhrase && renderVP(verbPhrase);
|
||||||
return <div className="mt-3" style={{ maxWidth: "950px"}}>
|
return <div className="mt-3" style={{ maxWidth: "950px"}}>
|
||||||
<div className="mb-3">
|
|
||||||
<div>{kingEmoji} = <abbr title="controls the verb conjugation, can be removed">king</abbr> of phrase</div>
|
|
||||||
<div>{servantEmoji} = <abbr title="can be shrunken into a mini-pronoun">servant</abbr> of phrase</div>
|
|
||||||
</div>
|
|
||||||
<VerbPicker
|
<VerbPicker
|
||||||
verbLocked={!!props.verb}
|
verbLocked={!!props.verb}
|
||||||
verbs={verbs}
|
verbs={verbs}
|
||||||
|
|
Loading…
Reference in New Issue