import React, { PropTypes } from 'react'; import { Button, Col, Panel, Row } from 'react-bootstrap'; import { contain } from 'thundercats-react'; export default contain( { store: 'JobsStore', actions: 'JobActions', map({ job: { id, isHighlighted } = {} }) { return { id, isHighlighted }; } }, React.createClass({ displayName: 'GoToPayPal', propTypes: { id: PropTypes.string, isHighlighted: PropTypes.bool }, render() { const { id } = this.props; return (

One more step

You're Awesome! just one more step to go. Clicking on the link below will redirect to paypal.
An array of credit cards
); } }) );