├── .editorconfig ├── .gitignore ├── license ├── package.json ├── readme.md ├── rollup.config.js └── src └── index.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukeed/preact-scroll-header/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukeed/preact-scroll-header/HEAD/.gitignore -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukeed/preact-scroll-header/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukeed/preact-scroll-header/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukeed/preact-scroll-header/HEAD/readme.md -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukeed/preact-scroll-header/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukeed/preact-scroll-header/HEAD/src/index.js --------------------------------------------------------------------------------