summaryrefslogtreecommitdiffhomepage
path: root/app
diff options
context:
space:
mode:
authoranderklander <anderklander@gmail.com>2018-03-02 11:47:06 +0100
committerAndrej Mihajlov <and@mullvad.net>2018-03-26 14:22:10 +0200
commite4196994e22192cd70817bec9de33d0d3116d97a (patch)
treeb0e7fcfc12dc3812694209c2758c61a386a9d76e /app
parentc8b78c79eaf33b4a29adedaddab18ba0a95cdb40 (diff)
downloadmullvadvpn-e4196994e22192cd70817bec9de33d0d3116d97a.tar.xz
mullvadvpn-e4196994e22192cd70817bec9de33d0d3116d97a.zip
Use XP-component
Diffstat (limited to 'app')
-rw-r--r--app/components/Login.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/components/Login.js b/app/components/Login.js
index 2c5d30034f..333d98f520 100644
--- a/app/components/Login.js
+++ b/app/components/Login.js
@@ -1,6 +1,6 @@
// @flow
import * as React from 'react';
-import { Text, View, Animated, Styles } from 'reactxp';
+import { Component, Text, View, Animated, Styles } from 'reactxp';
import { Layout, Container, Header } from './Layout';
import AccountInput from './AccountInput';
import { formatAccount } from '../lib/formatters';
@@ -34,7 +34,7 @@ type State = {
dropdownAnimationStyle: Animated.Style,
};
-export default class Login extends React.Component<LoginPropTypes, State> {
+export default class Login extends Component<LoginPropTypes, State> {
state = {
notifyOnFirstChangeAfterFailure: false,
isActive: false,