Plugin for react-jsonschema-form to use components in office-ui-fabric-react.
Some components are not yet or not fully supported.
Try it out in the playground.
npm i -s fabric-react-jsonschema-form
then...
import { allWidgets, fabricFields } from "fabric-react-jsonschema-form";
...
render() {
return <Form
schema={{ type: "string", title: "Hello world" }}
widgets={allWidgets}
{...fabricFields}
</Form>
}