const URLWidget = require('@readme/oas-form/src/components/widgets/URLWidget').default;

function createURLWidget(explorerEnabled) {
  // Return a function that renders null when the explorer is disabled
  if (!explorerEnabled) return () => null;

  return URLWidget;
}

module.exports = createURLWidget;
