UNPKG

react-jwchat

Version:

This is an easy-to-use web chat component, based on react.

6 lines (5 loc) 294 B
import React from 'react'; import { IScrollWrapper } from '../../types'; declare type HOC<InjectedProps, OwnProps> = <P>(Component: React.ComponentType<P & InjectedProps>) => React.ComponentType<P & OwnProps>; declare const ScrollWrapper: HOC<{}, IScrollWrapper>; export default ScrollWrapper;