@gechiui/components
Version:
UI components for GeChiUI.
29 lines (25 loc) • 678 B
JavaScript
import { createElement } from "@gechiui/element";
/**
* External dependencies
*/
import { ScrollView } from 'react-native';
/**
* Internal dependencies
*/
import KeyboardAvoidingView from '../keyboard-avoiding-view';
import styles from './style.android.scss';
const HTMLInputContainer = _ref => {
let {
children,
parentHeight
} = _ref;
return createElement(KeyboardAvoidingView, {
style: styles.keyboardAvoidingView,
parentHeight: parentHeight
}, createElement(ScrollView, {
style: styles.scrollView
}, children));
};
HTMLInputContainer.scrollEnabled = false;
export default HTMLInputContainer;
//# sourceMappingURL=container.android.js.map