Red-swr
Results
2
comments of
Red-swr
i've solved the rerendering of Day component with this. Omitting dayComponent and onPress seems to solve the issue? ```ts function areEqual(prevProps: DayProps, nextProps: DayProps) { const prevPropsWithoutMarkDates = omit(prevProps, "marking",...
just don't pass a prop that is recreated every render. ### ❌ BAD ```jsx ``` ### ✅ GOOD ```jsx const videoPlayerConfig = { fit: 'contain' }; // or const videoPlayerConfig...