├── .eslintrc.js ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .nvmrc ├── LICENSE ├── README.md ├── jest.config.js ├── package.json ├── renovate.json ├── src ├── index.test.tsx └── index.ts ├── stryker.conf.js ├── tsconfig.json └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaf-project/oaf-react-router/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaf-project/oaf-react-router/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | coverage 2 | dist 3 | node_modules 4 | reports -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | node -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaf-project/oaf-react-router/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaf-project/oaf-react-router/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaf-project/oaf-react-router/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaf-project/oaf-react-router/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaf-project/oaf-react-router/HEAD/renovate.json -------------------------------------------------------------------------------- /src/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaf-project/oaf-react-router/HEAD/src/index.test.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaf-project/oaf-react-router/HEAD/src/index.ts -------------------------------------------------------------------------------- /stryker.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaf-project/oaf-react-router/HEAD/stryker.conf.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaf-project/oaf-react-router/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oaf-project/oaf-react-router/HEAD/yarn.lock --------------------------------------------------------------------------------