( newProps: Partial<Props<any>> )
| 866 | }; |
| 867 | |
| 868 | const rerender = ( newProps: Partial<Props<any>> ) => { |
| 869 | component?.rerender( |
| 870 | <CKEditorContext |
| 871 | context={ deferContext } |
| 872 | contextWatchdog={ ContextWatchdog } |
| 873 | watchdogConfig={ { crashNumberLimit: 678 } } |
| 874 | {...props} |
| 875 | {...newProps} |
| 876 | > |
| 877 | <ContextReader /> |
| 878 | { newProps.children ?? children } |
| 879 | </CKEditorContext> |
| 880 | ); |
| 881 | }; |
| 882 | |
| 883 | return { |
| 884 | defer: deferContext.defer, |
no outgoing calls
no test coverage detected
searching dependent graphs…