aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/components/Footer.js
diff options
context:
space:
mode:
Diffstat (limited to 'vnext/src/components/Footer.js')
-rw-r--r--vnext/src/components/Footer.js9
1 files changed, 7 insertions, 2 deletions
diff --git a/vnext/src/components/Footer.js b/vnext/src/components/Footer.js
index a775833e..a6d89a5d 100644
--- a/vnext/src/components/Footer.js
+++ b/vnext/src/components/Footer.js
@@ -1,4 +1,5 @@
import React from 'react';
+import PropTypes from 'prop-types';
import Icon from './Icon';
@@ -22,5 +23,9 @@ export default function Footer(props) {
<div>Sponsors: {props.links}</div>
}
</div>
- )
-} \ No newline at end of file
+ );
+}
+
+Footer.propTypes = {
+ links: PropTypes.string
+};