diff options
| author | anderklander <anderklander@gmail.com> | 2018-02-15 09:39:18 +0100 |
|---|---|---|
| committer | anderklander <anderklander@gmail.com> | 2018-02-15 16:02:03 +0100 |
| commit | d145ab23311da29705498d3e92d26a6f5ea461c1 (patch) | |
| tree | 7e9bbed92c7176359973530cb422dc86419df11b | |
| parent | 1e9aa9bbeb6be8bd880946a27dc5672b9c668d33 (diff) | |
| download | mullvadvpn-d145ab23311da29705498d3e92d26a6f5ea461c1.tar.xz mullvadvpn-d145ab23311da29705498d3e92d26a6f5ea461c1.zip | |
Remove unused imports
| -rw-r--r-- | app/components/styled/AppButton.js | 6 | ||||
| -rw-r--r-- | app/components/styled/CellButton.js | 7 |
2 files changed, 4 insertions, 9 deletions
diff --git a/app/components/styled/AppButton.js b/app/components/styled/AppButton.js index 3c28e0b760..2b9e4538da 100644 --- a/app/components/styled/AppButton.js +++ b/app/components/styled/AppButton.js @@ -1,13 +1,11 @@ // @flow import React from 'react'; -import { Text, Component } from 'reactxp'; +import { Component } from 'reactxp'; import { Button } from './Button'; import { Label } from './Label'; -import { Icon } from './Icon'; -import Img from '../Img'; import { colors } from '../../config'; -import { createViewStyles, createTextStyles } from '../../lib/styles'; +import { createViewStyles } from '../../lib/styles'; const styles = { ...createViewStyles({ diff --git a/app/components/styled/CellButton.js b/app/components/styled/CellButton.js index 5a50955747..b11c2171e6 100644 --- a/app/components/styled/CellButton.js +++ b/app/components/styled/CellButton.js @@ -1,14 +1,11 @@ // @flow import React from 'react'; -import { Text, Component } from 'reactxp'; +import { Component } from 'reactxp'; import { Button } from './Button'; import { Label } from './Label'; -import { Icon } from './Icon'; -import { SubText } from './SubText'; -import Img from '../Img'; import { colors } from '../../config'; -import { createViewStyles, createTextStyles } from '../../lib/styles'; +import { createViewStyles } from '../../lib/styles'; const styles = { ...createViewStyles({ |
