├── .circleci └── config.yml ├── .gitignore ├── .vscode └── launch.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── babel.config.js ├── jest.config.js ├── package.json ├── react-dom-instance.js └── tests ├── FunctionalComponent.jsx ├── FunctionalComponent.spec.js ├── HigherOrderComponent.jsx ├── HigherOrderComponent.spec.js ├── NestedComponent.jsx ├── NestedComponent.spec.jsx ├── SimpleComponent.jsx └── SimpleComponent.spec.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arqex/react-dom-instance/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arqex/react-dom-instance/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arqex/react-dom-instance/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arqex/react-dom-instance/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arqex/react-dom-instance/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arqex/react-dom-instance/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arqex/react-dom-instance/HEAD/babel.config.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arqex/react-dom-instance/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arqex/react-dom-instance/HEAD/package.json -------------------------------------------------------------------------------- /react-dom-instance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arqex/react-dom-instance/HEAD/react-dom-instance.js -------------------------------------------------------------------------------- /tests/FunctionalComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arqex/react-dom-instance/HEAD/tests/FunctionalComponent.jsx -------------------------------------------------------------------------------- /tests/FunctionalComponent.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arqex/react-dom-instance/HEAD/tests/FunctionalComponent.spec.js -------------------------------------------------------------------------------- /tests/HigherOrderComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arqex/react-dom-instance/HEAD/tests/HigherOrderComponent.jsx -------------------------------------------------------------------------------- /tests/HigherOrderComponent.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arqex/react-dom-instance/HEAD/tests/HigherOrderComponent.spec.js -------------------------------------------------------------------------------- /tests/NestedComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arqex/react-dom-instance/HEAD/tests/NestedComponent.jsx -------------------------------------------------------------------------------- /tests/NestedComponent.spec.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arqex/react-dom-instance/HEAD/tests/NestedComponent.spec.jsx -------------------------------------------------------------------------------- /tests/SimpleComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arqex/react-dom-instance/HEAD/tests/SimpleComponent.jsx -------------------------------------------------------------------------------- /tests/SimpleComponent.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arqex/react-dom-instance/HEAD/tests/SimpleComponent.spec.js --------------------------------------------------------------------------------