grtwidgets
v1.0.11
Published
Some widgets that are React components
Downloads
27
Readme
grtwidgets
a set of UI widgets
Install
npm i --save grtwidgets
widgets
MultipleChoice
- a multiple choice question tool.AppHeader
- Header component for your app.
Use in your React app
import { MultipleChoice } from 'grtwidgets';
render() {
return (<MultipleChoice
style={{width:'500px', margin: '20px'}}
question="Some Question String"
answers={['Some', 'array', 'of', 'answers']}
onAnswerSelected={anwserCallback}
onAnswerSubmit={submitCallback} />);
}