( schema: JsonSchema, uischema: UISchemaElement, data?: any )
| 28 | import React from 'react'; |
| 29 | |
| 30 | export const initCore = ( |
| 31 | schema: JsonSchema, |
| 32 | uischema: UISchemaElement, |
| 33 | data?: any |
| 34 | ) => { |
| 35 | return { schema, uischema, data, ajv: createAjv() }; |
| 36 | }; |
| 37 | |
| 38 | export const TestEmitter: React.FC<JsonFormsReactProps> = ({ onChange }) => { |
| 39 | const ctx = useJsonForms(); |
no test coverage detected
searching dependent graphs…