summaryrefslogtreecommitdiffhomepage
path: root/app/components/PlatformWindow.android.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/components/PlatformWindow.android.js')
-rw-r--r--app/components/PlatformWindow.android.js10
1 files changed, 3 insertions, 7 deletions
diff --git a/app/components/PlatformWindow.android.js b/app/components/PlatformWindow.android.js
index b2a13e86c9..9d15466f56 100644
--- a/app/components/PlatformWindow.android.js
+++ b/app/components/PlatformWindow.android.js
@@ -4,14 +4,10 @@ import { KeyboardAvoidingView } from 'react-native';
export default class PlatformWindow extends React.Component {
props: {
- children: Array<React.Node> | React.Node
+ children: Array<React.Node> | React.Node,
};
render() {
- return (
- <KeyboardAvoidingView behavior={'position'}>
- { this.props.children }
- </KeyboardAvoidingView>
- );
+ return <KeyboardAvoidingView behavior={'position'}>{this.props.children}</KeyboardAvoidingView>;
}
-} \ No newline at end of file
+}