diff --git a/front-ui/app/components/payment/paymentSelect.js b/front-ui/app/components/payment/paymentSelect.js
index 4645f2d..ea2e72f 100644
--- a/front-ui/app/components/payment/paymentSelect.js
+++ b/front-ui/app/components/payment/paymentSelect.js
@@ -5,13 +5,14 @@ var NavigationStore = require('../../stores/navigationStore');
var Globals = require('../../globals');
var Router = require('react-router');
+var PaypalButton = require('./paypalButton');
var PaymentSelect = React.createClass({
render: function() {
return (
-
);
+ );
}
});
diff --git a/front-ui/app/components/payment/paypalButton.js b/front-ui/app/components/payment/paypalButton.js
index 93e3e1c..7adb253 100644
--- a/front-ui/app/components/payment/paypalButton.js
+++ b/front-ui/app/components/payment/paypalButton.js
@@ -6,35 +6,35 @@ var NavigationStore = require('../../stores/navigationStore');
var Globals = require('../../globals');
var Router = require('react-router');
-var PaymentSelect = React.createClass({
+var PaypalButton = React.createClass({
render: function() {
return (
-);
+
+
+ );
}
});
-module.exports = PaymentSelect;
+module.exports = PaypalButton;