0.1.10 • Published 3 years ago

@jacktn/fabric-react-jsonschema-form v0.1.10

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

fabric-react-jsonschema-form

Plugin for react-jsonschema-form to use components in office-ui-fabric-react.

Some components are not yet or not fully supported.

Playground

Try it out in the playground.

Quick start

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>
}