I have a react component. I want to use DragSource and Connect in the component.
export default connect(mapStateToProps, matchDispatchToProps)(ExpandableCard);
export default DragSource(Types.CARD, cardSource, collect)(ExpandableCard);
How can I accomodate both the lines for a single component i.e. ExpandableCard