summaryrefslogtreecommitdiffhomepage
path: root/app/components/PlatformWindow.js
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@mullvad.net>2018-07-18 15:07:37 +0200
committerAndrej Mihajlov <and@mullvad.net>2018-08-15 17:39:38 +0200
commit71592249b2dd669b6f24f37bfb7b0f4e43b74998 (patch)
treea6097dc7e5d94d06e99c65fdfe160e824395f50c /app/components/PlatformWindow.js
parente84e87f4ce5a8c242f756566cdc6fb59a45f7bea (diff)
downloadmullvadvpn-71592249b2dd669b6f24f37bfb7b0f4e43b74998.tar.xz
mullvadvpn-71592249b2dd669b6f24f37bfb7b0f4e43b74998.zip
Add workspaces
Diffstat (limited to 'app/components/PlatformWindow.js')
-rw-r--r--app/components/PlatformWindow.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/app/components/PlatformWindow.js b/app/components/PlatformWindow.js
deleted file mode 100644
index c1133af0c2..0000000000
--- a/app/components/PlatformWindow.js
+++ /dev/null
@@ -1,18 +0,0 @@
-// @flow
-
-import * as React from 'react';
-import { Component, View, Styles } from 'reactxp';
-
-const styles = {
- darwin: Styles.createViewStyle({
- WebkitMask: `
- url(./assets/images/app-triangle.svg) 50% 0% no-repeat,
- url(./assets/images/app-header-backdrop.svg) no-repeat`,
- }),
-};
-
-export default class PlatformWindow extends Component {
- render() {
- return <View style={styles[process.platform]}>{this.props.children}</View>;
- }
-}