Andrew Fritz

Results 4 comments of Andrew Fritz

For those using jest and running into the JSX undefined issue, you can try simply mocking the hook: ``` jest.mock('react-resize-aware', () => jest.fn().mockReturnValue([null, { width: 0 }]) ); ```