Hooks
Hooks
提供一种传递资料方式,不需要透过 props
的层层传递到每一层元件
只能由上传到下方的元件,不能平行互传
- 只在最上层呼叫 Hook
- Hook 的规则 – React
- Collection of React Hooks
import { useState } from 'react';
const [name, setName] = useState('KJ');
提供一种传递资料方式,不需要透过 props
的层层传递到每一层元件
只能由上传到下方的元件,不能平行互传
import { useState } from 'react';
const [name, setName] = useState('KJ');