From 8b8aa0ee4861b45df9d6d43c536c76803a891bac Mon Sep 17 00:00:00 2001 From: Ray Schamp Date: Fri, 9 Oct 2015 10:47:23 -0600 Subject: [PATCH] Name Registration component --- src/components/registration/registration.jsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/registration/registration.jsx b/src/components/registration/registration.jsx index 7e8b3ae22..61f9024d8 100644 --- a/src/components/registration/registration.jsx +++ b/src/components/registration/registration.jsx @@ -5,7 +5,7 @@ require('./registration.scss'); Modal.setAppElement(document.getElementById('view')); -module.exports = React.createClass({ +var Registration = React.createClass({ propTypes: { isOpen: React.PropTypes.bool, onRegistrationDone: React.PropTypes.func, @@ -32,3 +32,5 @@ module.exports = React.createClass({ ); } }); + +module.exports = Registration;