Fix for paypalButton component

This commit is contained in:
adam.harbas@a-net.ba
2016-01-05 09:31:51 +01:00
parent c2cd011ffb
commit abb44757a5
2 changed files with 29 additions and 28 deletions

View File

@@ -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 (
<div className="payment_select">
<PaypalButton />
</div>);
<div className="payment_select">
<PaypalButton />
</div>);
}
});