import DynamicRenderer from '../../resources/ui/dynamic/dynamicRenderer' const test = () => { const props = { schema: { "type": "object", "properties": { "hello": { "type": "string" } }, "required": [ "hello" ] }, onSubmit: async data => { console.log(data); }, onCancel: async err => { console.log('canceled',err) } } return (); }; export default test