Currently, I am working on a form utilizing react-jsonschema-form
. However, I would like to further enhance the appearance of my application (including the form) by incorporating Material-UI
.
I am encountering difficulties integrating both frameworks together due to react-jsonchema-form
relying on a uiSchema
for styling while Material-UI
involves using a prop
in this manner:
SimpleModal.propTypes = {
classes: PropTypes.object.isRequired,
};
<FormControl className={classes.formControl}>
Is there a way to effectively incorporate Material-UI
within the schema forms
?