How to use the @jsonforms/react.withJsonFormsEnumProps function in @jsonforms/react

To help you get started, we’ve selected a few @jsonforms/react examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github eclipsesource / jsonforms / packages / material / src / controls / MaterialEnumControl.tsx View on Github external
import { MuiSelect } from '../mui-controls/MuiSelect';
import { MaterialInputControl } from './MaterialInputControl';

export const MaterialEnumControl = (props: ControlProps & OwnPropsOfEnum) => (
  
);

export const materialEnumControlTester: RankedTester = rankWith(
  2,
  isEnumControl
);

export default withJsonFormsEnumProps(MaterialEnumControl);