UNPKG

@wordpress/components

Version:
17 lines (16 loc) 425 B
import { createElement } from "@wordpress/element"; /** * External dependencies */ import { Text, View } from 'react-native'; export default function BaseControl({ label, help, children }) { return createElement(View, { accessible: true, accessibilityLabel: label }, label && createElement(Text, null, label), children, help && createElement(Text, null, help)); } //# sourceMappingURL=index.native.js.map