import React from 'react'; import CnCardView from './cn-card'; class CnCard extends React.Component { constructor(props) { super(props); this.ref = React.createRef(); } render() { return ; } } CnCard.displayName = 'CnCard'; export default CnCard; export { CnCard };