use fused state:自定义React Hook可处理prop和状态逻辑 源码
useFusedState useFusedState是一个自定义的React Hook,可帮助简单地处理prop和state更改逻辑。 例子 import React from 'react' ; import useFusedState from 'use-fused-state' ; interface TimerProps { defaultValue ?: number ; value ?: number ; onChange ?: ( newValue : number ) => void ; } export default function Timer ( props : TimerProps ) { const { defaultValue , value , onChange } = props ; const [ time , onTimeCha
文件列表
use-fused-state-master.zip
(预估有个16文件)
use-fused-state-master
.gitignore
188B
package.json
1KB
package-lock.json
740KB
src
useFusedState.ts
2KB
index.ts
102B
stories
Timer.stories.tsx
2KB
Timer.tsx
864B
用户评论