├── .github └── workflows │ └── test.yml ├── .gitignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── index.spec.tsx ├── index.ts ├── package.json ├── test-matrix.sh └── tsconfig.json /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grrowl/react-keyed-flatten-children/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grrowl/react-keyed-flatten-children/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grrowl/react-keyed-flatten-children/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grrowl/react-keyed-flatten-children/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grrowl/react-keyed-flatten-children/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grrowl/react-keyed-flatten-children/HEAD/README.md -------------------------------------------------------------------------------- /index.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grrowl/react-keyed-flatten-children/HEAD/index.spec.tsx -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grrowl/react-keyed-flatten-children/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grrowl/react-keyed-flatten-children/HEAD/package.json -------------------------------------------------------------------------------- /test-matrix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grrowl/react-keyed-flatten-children/HEAD/test-matrix.sh -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grrowl/react-keyed-flatten-children/HEAD/tsconfig.json --------------------------------------------------------------------------------