美文网首页
最简单的React 组件

最简单的React 组件

作者: _嘿嘿_ | 来源:发表于2018-06-07 16:21 被阅读0次

    /**

    • Created by mashroom on 6/7/2018.
      */
      import React, { Component } from 'react';
      import { Card} from 'antd';
      class Search extends Component {
      constructor(props) {
      super(props);
      this.state = {
      show: true,
      current:1
      }
      }

      componentDidMount() {

      }
      render() {
      return (
      <div>大可</div>
      )
      }
      }

    export default Search;

    相关文章

      网友评论

          本文标题:最简单的React 组件

          本文链接:https://www.haomeiwen.com/subject/sjigsftx.html