What does this assignment mean?
const { data: scoreData } = useMostRecentScore(studentId, loginId)
What does this assignment mean?
const { data: scoreData } = useMostRecentScore(studentId, loginId)
If useMostRecentScore
returns an object, with a data
property, it will create a new variable called scoreData
and assign the contents of the data
property.