123456789101112131415161718 |
- import React, { Component,Fragment } from "react";
- import { connect } from 'react-redux';
- import { bindActionCreators } from 'redux';
- import LoadForm from "../../components/common/input-form";
- class AddCard extends Component {
-
- render() {
-
- return (
- <div></div>
- )
- }
- }
- export default AddCard
|