UNPKG

@datalayer/primer-rjsf

Version:

React JSON Schema Form (RJSF) for Primer

23 lines (22 loc) 407 B
export default { schema: { title: "A localisation form", type: "object", required: ["lat", "lon"], properties: { lat: { type: "number", }, lon: { type: "number", }, }, }, uiSchema: { "ui:field": "geo", }, formData: { lat: 0, lon: 0, }, };