import React from 'react'; import { KeyboardAwareScrollView } from '@codler/react-native-keyboard-aware-scroll-view'; import scrollPersistTaps from '../utils/scrollPersistTaps'; interface IKeyboardViewProps { style: any, contentContainerStyle: any, keyboardVerticalOffset: number, scrollEnabled: boolean, children: JSX.Element; } export default class KeyboardView extends React.PureComponent { render() { const { style, contentContainerStyle, scrollEnabled, keyboardVerticalOffset, children } = this.props; return ( {children} ); } }