react-practice icon indicating copy to clipboard operation
react-practice copied to clipboard

《React实战:设计模式和最佳实践》源代码

Results 4 react-practice issues
Sort by recently updated
recently updated
newest added

https://github.com/mocheng/react-practice/blob/67df773606e5515ff65a062596a61c6496caae59/basic_stop_watch/src/StopWatch.js#L33

reproduce step: start->pause->start StopWatch會從0開始計時,預期結果是click start時,StartWatch接續pause的時間繼續計時 solution: 增加一個變數計算startTime-currentTime,讓onStart擁有繼續計時的功能

`render_props_demo/src/Auth.js` 中是使用`props.nologout` ``` {props.nologout(props)} ``` 但是,`App.js`中使用`nologin`, 不匹配 ``` Hello {userName}} nologin={() => Please login} /> ```