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