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