Issue: `node_modules/react-visibility-sensor/index.d.ts:34:38 - error TS2694: Namespace 'React' has no exported member 'StatelessComponent'.
34 const ReactVisibilitySensor: React.StatelessComponent;
~~~~~~~~~~~~~~~~~~
Found 1 error in node_modules/react-visibility-sensor/index.d.ts:34`
React: 18.2.0
Probable Solution: In index.d.ts at line 34. replace
const ReactVisibilitySensor: React.StatelessComponent<Props>;
with
const ReactVisibilitySensor: React.FC<Props>;
Issue: `node_modules/react-visibility-sensor/index.d.ts:34:38 - error TS2694: Namespace 'React' has no exported member 'StatelessComponent'.
34 const ReactVisibilitySensor: React.StatelessComponent;
~~~~~~~~~~~~~~~~~~
Found 1 error in node_modules/react-visibility-sensor/index.d.ts:34`
React: 18.2.0
Probable Solution: In index.d.ts at line 34. replace
const ReactVisibilitySensor: React.StatelessComponent<Props>;with
const ReactVisibilitySensor: React.FC<Props>;