summaryrefslogtreecommitdiffstats
path: root/webapp/components/header_footer_template.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/header_footer_template.jsx')
-rw-r--r--webapp/components/header_footer_template.jsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/webapp/components/header_footer_template.jsx b/webapp/components/header_footer_template.jsx
index 6fb9c9046..9f6d40631 100644
--- a/webapp/components/header_footer_template.jsx
+++ b/webapp/components/header_footer_template.jsx
@@ -4,6 +4,8 @@
import $ from 'jquery';
import {FormattedMessage} from 'react-intl';
+import PropTypes from 'prop-types';
+
import React from 'react';
export default class NotLoggedIn extends React.Component {
@@ -104,5 +106,5 @@ NotLoggedIn.defaultProps = {
};
NotLoggedIn.propTypes = {
- children: React.PropTypes.object
+ children: PropTypes.object
};