├── .babelrc ├── .eslintrc ├── .github ├── FUNDING.yml └── workflows │ └── build_and_deploy.yml ├── .gitignore ├── .prettierignore ├── LICENSE ├── README.md ├── jest.config.json ├── package.json ├── pnpm-lock.yaml ├── src ├── fake-backend │ ├── fake-backend.js │ ├── films.json │ ├── people.json │ └── planets.json ├── fetchWithCache.js └── react-mf-api.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-microfrontends/api/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-microfrontends/api/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-microfrontends/api/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build_and_deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-microfrontends/api/HEAD/.github/workflows/build_and_deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-microfrontends/api/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-microfrontends/api/HEAD/.prettierignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-microfrontends/api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-microfrontends/api/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-microfrontends/api/HEAD/jest.config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-microfrontends/api/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-microfrontends/api/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/fake-backend/fake-backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-microfrontends/api/HEAD/src/fake-backend/fake-backend.js -------------------------------------------------------------------------------- /src/fake-backend/films.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-microfrontends/api/HEAD/src/fake-backend/films.json -------------------------------------------------------------------------------- /src/fake-backend/people.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-microfrontends/api/HEAD/src/fake-backend/people.json -------------------------------------------------------------------------------- /src/fake-backend/planets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-microfrontends/api/HEAD/src/fake-backend/planets.json -------------------------------------------------------------------------------- /src/fetchWithCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-microfrontends/api/HEAD/src/fetchWithCache.js -------------------------------------------------------------------------------- /src/react-mf-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-microfrontends/api/HEAD/src/react-mf-api.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-microfrontends/api/HEAD/webpack.config.js --------------------------------------------------------------------------------