27 lines
975 B
JavaScript
27 lines
975 B
JavaScript
var React = require('react');
|
|
var ItemActions = require('../../actions/itemActions');
|
|
var NavigationActions = require('../../actions/navigationActions');
|
|
var NavigationStore = require('../../stores/navigationStore');
|
|
|
|
var Globals = require('../../globals');
|
|
var Router = require('react-router');
|
|
|
|
var PaymentSelect = React.createClass({
|
|
render: function() {
|
|
return (
|
|
<div className="payment_select">
|
|
<input name="payment_method" type="radio" value="credit_card" defaultChecked="checked" className="js-payment-method radio-input" id="pay-by-cod" />
|
|
<label for="pay-by-credit-card" className="radio-label">
|
|
Gotovinom (prilikom preuzimanja robe)
|
|
</label>
|
|
<input name="payment_method" type="radio" value="paypal" className="js-payment-method radio-input" id="pay-by-credit-card" />
|
|
<label for="pay-with-paypal" className="radio-label">
|
|
Kreditnom / debitnom karticom
|
|
</label>
|
|
</div>);
|
|
}
|
|
});
|
|
|
|
|
|
module.exports = PaymentSelect;
|