summaryrefslogtreecommitdiffhomepage
path: root/app/components/PlatformWindow.js
diff options
context:
space:
mode:
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>;
- }
-}