UNPKG

react-kiwi-dropdown

Version:

| Name | Type | Description | | --------------------------- | -------------------- | ----------- | | options | array | | selectedOption | string | | onCha

14 lines (13 loc) 345 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = extractValueFromJSXElement; /** * Extractor function for a JSXElement type value node. * * Returns self-closing element with correct name. */ function extractValueFromJSXElement(value) { return "<" + value.openingElement.name.name + " />"; }