UNPKG

@open-formulieren/formio-builder

Version:

An opinionated Formio webform builder for Open Forms

15 lines (14 loc) 584 B
/// <reference types="react" /> /** * Fetch the available Reference lists services and display them in a Select * * The selected service is used at runtime to retrieve options to populate a Select * * This requires an async function `getServices` to be provided to the * BuilderContext which is responsible for retrieving the list of available plugins. * * If a fetch error occurs, it is thrown during rendering - you should provide your * own error boundary to catch this. */ declare const ReferenceListsServiceSelect: React.FC; export default ReferenceListsServiceSelect;