其他分享
首页 > 其他分享> > react Hook

react Hook

作者:互联网

https://react.docschina.org/docs/hooks-intro.html

Hook 是 React 16.8 的新增特性。它可以让你在不编写 class 的情况下使用 state 以及其他的 React 特性。

import React, { useState } from 'react';

 

function Example() {

  const [count, setCount] = useState(0);

  return (

    <div>

      <p>You clicked {count} times</p>

      <button onClick={() => setCount(count + 1)}>

        Click me

      </button>

    </div>

  );

}

 

 

状态数据和UI显示分离

 

 

useEffect

 

标签:count,React,setCount,react,Hook,useState
来源: https://www.cnblogs.com/ht955/p/15170423.html