huiKuanLook.jsx 298 B

123456789101112131415161718
  1. import React, { Component } from "react";
  2. import HuiKuan from "./huiKuan";
  3. class HuiKuanLook extends Component {
  4. constructor(props) {
  5. super(props);
  6. this.state = {
  7. look: true
  8. };
  9. }
  10. render() {
  11. return <HuiKuan look={this.state.look} />;
  12. }
  13. }
  14. export default HuiKuanLook;