From 3d0eff1c156ad28b605eebf0ef02733c2104442c Mon Sep 17 00:00:00 2001 From: Senad Uka Date: Mon, 23 Nov 2015 12:58:14 +0100 Subject: [PATCH] paypal button --- .../app/components/payment/paypalButton.js | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 front-ui/app/components/payment/paypalButton.js diff --git a/front-ui/app/components/payment/paypalButton.js b/front-ui/app/components/payment/paypalButton.js new file mode 100644 index 0000000..93e3e1c --- /dev/null +++ b/front-ui/app/components/payment/paypalButton.js @@ -0,0 +1,40 @@ +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 ( +
+
+ + + + + + + + + + + + + + + + + + + +
+
+); + } +}); + + +module.exports = PaymentSelect;