summaryrefslogtreecommitdiffhomepage
path: root/app/components/WindowChrome.js
diff options
context:
space:
mode:
authoranderklander <anderklander@gmail.com>2018-01-17 14:01:22 +0100
committeranderklander <anderklander@gmail.com>2018-01-18 19:57:22 +0100
commitc873ba2643b2fdc94187f02610530777fdf25895 (patch)
treeec9678f318a0d305770af1e81cfb33312c3eba04 /app/components/WindowChrome.js
parentbe2cdd817bfd7f412156c0204bdb4ed77a17f7e4 (diff)
downloadmullvadvpn-c873ba2643b2fdc94187f02610530777fdf25895.tar.xz
mullvadvpn-c873ba2643b2fdc94187f02610530777fdf25895.zip
Rename WindowChrome
And add KeyboardAvoidingView as a platform specific window for android.
Diffstat (limited to 'app/components/WindowChrome.js')
-rw-r--r--app/components/WindowChrome.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/app/components/WindowChrome.js b/app/components/WindowChrome.js
deleted file mode 100644
index d7094813db..0000000000
--- a/app/components/WindowChrome.js
+++ /dev/null
@@ -1,16 +0,0 @@
-// @flow
-import React, { Component } from 'react';
-
-export default class WindowChrome extends Component {
- props: {
- children: Array<React.Element<*>> | React.Element<*>
- }
- render(): React.Element<*> {
- const chromeClass = ['window-chrome', 'window-chrome--' + process.platform];
- return (
- <div className={ chromeClass.join(' ') }>
- { this.props.children }
- </div>
- );
- }
-} \ No newline at end of file