├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src ├── __tests__ │ ├── InfiniteScroll.tsx │ └── __snapshots__ │ │ └── InfiniteScroll.tsx.snap └── index.tsx ├── tsconfig.json ├── tslint.json ├── webpack.lib.js ├── webpack.umd.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | lib 3 | es6 4 | umd 5 | *.log 6 | coverage -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/react-simple-infinite-scroll/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/react-simple-infinite-scroll/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/react-simple-infinite-scroll/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/InfiniteScroll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/react-simple-infinite-scroll/HEAD/src/__tests__/InfiniteScroll.tsx -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/InfiniteScroll.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/react-simple-infinite-scroll/HEAD/src/__tests__/__snapshots__/InfiniteScroll.tsx.snap -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/react-simple-infinite-scroll/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/react-simple-infinite-scroll/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/react-simple-infinite-scroll/HEAD/tslint.json -------------------------------------------------------------------------------- /webpack.lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/react-simple-infinite-scroll/HEAD/webpack.lib.js -------------------------------------------------------------------------------- /webpack.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/react-simple-infinite-scroll/HEAD/webpack.umd.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/react-simple-infinite-scroll/HEAD/yarn.lock --------------------------------------------------------------------------------