import React, { Component } from "react";
import ContractChange from "./contractYxgly.js";

class ContractChangeYxgly extends Component {
    constructor(props) {
        super(props);
        this.state = {
          processState:1
        };
    }

    render() {
        return (
            <ContractChange processState={this.state.processState}/>
        )
    }
}

export default ContractChangeYxgly;