import React from 'react'; import CnStepView from './step-view'; class CnStep extends React.Component { constructor(props) { super(props); this.ref = React.createRef(); } render() { return ; } } CnStep.displayName = 'CnStep'; export default CnStep; export { CnStep };