Ghost/ghost/members-auth-pages/components/CheckoutForm.js
Rishabh Garg 7d826c4b44 Updated signup page for members (#10493)
no issue

* Added new subscribe page with stripe integration
2019-05-07 17:15:50 +02:00

19 lines
323 B
JavaScript

import React, {Component} from 'react';
import {CardElement} from 'react-stripe-elements';
class CheckoutForm extends Component {
constructor(props) {
super(props);
}
render() {
return (
<div className="gm-form-element">
<CardElement />
</div>
);
}
}
export default CheckoutForm;