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;