Merged subject browser / question searcher, showing questions count on subject browser

This commit is contained in:
MrFry 2020-03-22 16:58:43 +01:00
parent a0f2bf26b3
commit 748a2d826c
3 changed files with 16 additions and 2 deletions

View file

@ -1,5 +1,7 @@
// TODO: add number next to it
import styles from './SubjectSelector.module.css'
export default function SubjectSelector (props) {
const { activeSubjName, searchTerm, data, onSubjSelect } = props
@ -19,7 +21,12 @@ export default function SubjectSelector (props) {
key={i}
onClick={() => onSubjSelect(subj.Name)}
>
{subj.Name}
<span>
{subj.Name}
</span>
<span className={styles.questionCount}>
[ {subj.Questions.length} ]
</span>
</div>
)
})}