Q:

react-jsonschema-form is not assignable to type 'JSONSchema6'

// We need to provide a type for json schema
import Form from "react-jsonschema-form";
import { JSONSchema6 } from "json-schema";
import schema from "./form.jsonschema.json";

const App = () => {
  return (
    <div>
      <Form schema={schema as JSONSchema6} />
    </div>
  );
}
0

New to Communities?

Join the community