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