摘要: We should always ship fast experiences to our users, but sometimes something slips through our PR review process and our users start having a slow exp 阅读全文
posted @ 2020-10-23 02:43 Zhentiw 阅读(119) 评论(0) 推荐(0)
摘要: For the follow code: function Cell({row, column}) { const state = useAppState() const cell = state.grid[row][column] const dispatch = useAppDispatch() 阅读全文
posted @ 2020-10-23 02:32 Zhentiw 阅读(115) 评论(0) 推荐(0)
摘要: The way that context works is that whenever the provided value changes from one render to another, it triggers a re-render of all the consuming compon 阅读全文
posted @ 2020-10-23 00:28 Zhentiw 阅读(106) 评论(0) 推荐(0)
摘要: const defaultInitialState = {status: 'idle', data: null, error: null} export function useAsync(initialState) { const initialStateRef = React.useRef({ 阅读全文
posted @ 2020-10-23 00:26 Zhentiw 阅读(535) 评论(0) 推荐(0)
摘要: // Window large lists with react-virtual // http://localhost:3000/isolated/final/04.js import React from 'react' import {useVirtual} from 'react-virtu 阅读全文
posted @ 2020-10-23 00:10 Zhentiw 阅读(328) 评论(0) 推荐(0)