// https://react-jsonschema-form.readthedocs.io/en/latest/ import Form from "@rjsf/bootstrap-4"; const schema = { "type": "object", "properties": { "hello": { "type": "string" } }, "required": [ "hello" ] }; const formData = "a"; const log = (type) => console.log.bind(console, type); export default () => (
);