// @flow import * as React from 'react'; import { KeyboardAvoidingView } from 'react-native'; export default class PlatformWindow extends React.Component { props: { children: Array | React.Node }; render() { return ( { this.props.children } ); } }