├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── package.json ├── src └── index.ts ├── tests └── index.test.tsx ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quisido/react-innertext/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quisido/react-innertext/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quisido/react-innertext/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quisido/react-innertext/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quisido/react-innertext/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quisido/react-innertext/HEAD/src/index.ts -------------------------------------------------------------------------------- /tests/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quisido/react-innertext/HEAD/tests/index.test.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quisido/react-innertext/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quisido/react-innertext/HEAD/yarn.lock --------------------------------------------------------------------------------