This commit is contained in:
lingdocs 2022-05-11 13:45:34 -05:00
parent 53d2628408
commit 81bbb79654
1 changed files with 4 additions and 4 deletions

View File

@ -390,7 +390,7 @@ export default function EquativeGame({ id, link, level }: { id: string, link: st
</div> </div>
<div className="text-center my-2"> <div className="text-center my-2">
{/* <div> */} {/* <div> */}
<button className="btn btn-primary" type="submit">check</button> <button className="btn btn-primary" type="submit">return </button>
{/* </div> */} {/* </div> */}
{/* <div className="text-muted small text-center mt-2"> {/* <div className="text-muted small text-center mt-2">
Type <kbd>Enter</kbd> to check Type <kbd>Enter</kbd> to check
@ -402,11 +402,11 @@ export default function EquativeGame({ id, link, level }: { id: string, link: st
function Instructions() { function Instructions() {
return <div> return <div>
{level === "allProduce" {level === "allIdentify"
? <p className="lead">Fill in the blank with the correct <strong>{humanReadableTense(level)} equative</strong> <strong>in Pashto script</strong></p> ? <p className="lead">Identify a correct tense for each equative phrase you see</p>
: level === "situations" : level === "situations"
? <p className="lead">Choose the right type of equative for each given situation</p> ? <p className="lead">Choose the right type of equative for each given situation</p>
: <p className="lead">Identify a correct tense for each equative phrase you see</p>} : <p className="lead">Fill in the blank with the correct <strong>{humanReadableTense(level)} equative</strong> <strong>in Pashto script</strong></p>}
{level === "allProduce" && <div> All tenses included...</div>} {level === "allProduce" && <div> All tenses included...</div>}
</div> </div>
} }