import React, { Component } from "react"; import ContractChange from "../../order/orderNew/contractJsjl.js"; class ContractChangeJsjl extends Component { constructor(props) { super(props); this.state = { processState: 3 }; } render() { return <ContractChange processState={this.state.processState} />; } } export default ContractChangeJsjl;