I am doing a form using react-jsonschema-form
, but i really want to customize my application (including the form) with the Material-UI
.
I am having trouble to use both together because react-jsonchema-form
uses a uiSchema
for styling and the Material-UI
is set on a prop
like this :
SimpleModal.propTypes = {
classes: PropTypes.object.isRequired,
};
<FormControl className={classes.formControl}>
How can i use the Material-UI
inside the schema forms
?