diff options
| author | Erik Larkö <erik@mullvad.net> | 2017-07-13 09:20:41 +0200 |
|---|---|---|
| committer | Erik Larkö <erik@mullvad.net> | 2017-07-13 09:20:41 +0200 |
| commit | 76a9fbc48492e9afb4504279bbbde70c0deddb77 (patch) | |
| tree | 94036b56cf663fe03f1942ae59776741199368e9 | |
| parent | 363fe649f8604c55b654b101fc300312879b0bbd (diff) | |
| download | mullvadvpn-76a9fbc48492e9afb4504279bbbde70c0deddb77.tar.xz mullvadvpn-76a9fbc48492e9afb4504279bbbde70c0deddb77.zip | |
export default in Map.js
| -rw-r--r-- | app/components/Connect.js | 2 | ||||
| -rw-r--r-- | app/components/Map.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/components/Connect.js b/app/components/Connect.js index f4b1f4210f..064873f581 100644 --- a/app/components/Connect.js +++ b/app/components/Connect.js @@ -6,7 +6,7 @@ import { If, Then, Else } from 'react-if'; import { Layout, Container, Header } from './Layout'; import { BackendError } from '../lib/backend'; import ExternalLinkSVG from '../assets/images/icon-extLink.svg'; -import { Map } from './Map'; +import Map from './Map'; import type { ServerInfo } from '../lib/backend'; import type { HeaderBarStyle } from './HeaderBar'; diff --git a/app/components/Map.js b/app/components/Map.js index 8670397891..337d5c812b 100644 --- a/app/components/Map.js +++ b/app/components/Map.js @@ -13,7 +13,7 @@ const ReactMap = ReactMapboxGl({ interactive: false, }); -export class Map extends Component { +export default class Map extends Component { props: { animate: boolean, location: Coordinate2d, |
