diff options
| author | Andrej Mihajlov <and@codeispoetry.ru> | 2017-02-21 11:11:16 +0000 |
|---|---|---|
| committer | Andrej Mihajlov <and@codeispoetry.ru> | 2017-02-21 11:11:16 +0000 |
| commit | 191d72546accf308696f57ee14d27c1b221ad4b9 (patch) | |
| tree | 441854704f4a281839ec732eae33e510ff97e497 | |
| parent | 1e09706e229e59c32a1f6e8136495b5318946675 (diff) | |
| download | mullvadvpn-191d72546accf308696f57ee14d27c1b221ad4b9.tar.xz mullvadvpn-191d72546accf308696f57ee14d27c1b221ad4b9.zip | |
Fix propTypes declaration
| -rw-r--r-- | app/components/CustomScrollbars.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/components/CustomScrollbars.js b/app/components/CustomScrollbars.js index d68f66146e..45a22b5d88 100644 --- a/app/components/CustomScrollbars.js +++ b/app/components/CustomScrollbars.js @@ -2,7 +2,7 @@ import React, { Component, PropTypes } from 'react'; import { Scrollbars } from 'react-custom-scrollbars'; export default class CustomScrollbars extends Component { - static propTypes: { + static propTypes = { children: PropTypes.element } |
