add-card.js 326 B

123456789101112131415161718
  1. import React, { Component,Fragment } from "react";
  2. import { connect } from 'react-redux';
  3. import { bindActionCreators } from 'redux';
  4. import LoadForm from "../../components/common/input-form";
  5. class AddCard extends Component {
  6. render() {
  7. return (
  8. <div></div>
  9. )
  10. }
  11. }
  12. export default AddCard