@instructure/quiz-interactions
Version:
A React UI component Library for quiz interaction types.
20 lines • 387 B
JavaScript
import imageUrl from '../exampleImage.png';
export default {
propValues: {
userResponse: [{
value: {
x: 0.5,
y: 0.5
}
}]
},
getComponentProps: function getComponentProps(props) {
return {
itemBody: 'Hotspot Take',
interactionData: {
imageUrl: imageUrl
},
handleResponseUpdate: Function.prototype
};
}
};