├── .gitignore ├── README.md ├── host ├── .gitignore ├── README.md ├── package.json ├── rsbuild.config.ts ├── src │ ├── bootstrap.tsx │ ├── env.d.ts │ ├── index.js │ ├── root.tsx │ ├── routes │ │ └── home.tsx │ └── types-module-federation.d.ts └── tsconfig.json ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml └── remote ├── .gitignore ├── README.md ├── package.json ├── rsbuild.config.ts ├── src ├── App.css ├── App.tsx ├── bootstrap.tsx ├── env.d.ts ├── index.tsx ├── routes.tsx ├── routes │ ├── remote.index.tsx │ ├── remote.nested-remote-link.tsx │ └── remote.tsx └── types-module-federation.d.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swalker326/react-router-fog-of-war-example/HEAD/README.md -------------------------------------------------------------------------------- /host/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swalker326/react-router-fog-of-war-example/HEAD/host/.gitignore -------------------------------------------------------------------------------- /host/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swalker326/react-router-fog-of-war-example/HEAD/host/README.md -------------------------------------------------------------------------------- /host/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swalker326/react-router-fog-of-war-example/HEAD/host/package.json -------------------------------------------------------------------------------- /host/rsbuild.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swalker326/react-router-fog-of-war-example/HEAD/host/rsbuild.config.ts -------------------------------------------------------------------------------- /host/src/bootstrap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swalker326/react-router-fog-of-war-example/HEAD/host/src/bootstrap.tsx -------------------------------------------------------------------------------- /host/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swalker326/react-router-fog-of-war-example/HEAD/host/src/env.d.ts -------------------------------------------------------------------------------- /host/src/index.js: -------------------------------------------------------------------------------- 1 | import('./bootstrap') -------------------------------------------------------------------------------- /host/src/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swalker326/react-router-fog-of-war-example/HEAD/host/src/root.tsx -------------------------------------------------------------------------------- /host/src/routes/home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swalker326/react-router-fog-of-war-example/HEAD/host/src/routes/home.tsx -------------------------------------------------------------------------------- /host/src/types-module-federation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swalker326/react-router-fog-of-war-example/HEAD/host/src/types-module-federation.d.ts -------------------------------------------------------------------------------- /host/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swalker326/react-router-fog-of-war-example/HEAD/host/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swalker326/react-router-fog-of-war-example/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swalker326/react-router-fog-of-war-example/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /remote/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swalker326/react-router-fog-of-war-example/HEAD/remote/.gitignore -------------------------------------------------------------------------------- /remote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swalker326/react-router-fog-of-war-example/HEAD/remote/README.md -------------------------------------------------------------------------------- /remote/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swalker326/react-router-fog-of-war-example/HEAD/remote/package.json -------------------------------------------------------------------------------- /remote/rsbuild.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swalker326/react-router-fog-of-war-example/HEAD/remote/rsbuild.config.ts -------------------------------------------------------------------------------- /remote/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swalker326/react-router-fog-of-war-example/HEAD/remote/src/App.css -------------------------------------------------------------------------------- /remote/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swalker326/react-router-fog-of-war-example/HEAD/remote/src/App.tsx -------------------------------------------------------------------------------- /remote/src/bootstrap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swalker326/react-router-fog-of-war-example/HEAD/remote/src/bootstrap.tsx -------------------------------------------------------------------------------- /remote/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swalker326/react-router-fog-of-war-example/HEAD/remote/src/env.d.ts -------------------------------------------------------------------------------- /remote/src/index.tsx: -------------------------------------------------------------------------------- 1 | import("./bootstrap"); 2 | -------------------------------------------------------------------------------- /remote/src/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swalker326/react-router-fog-of-war-example/HEAD/remote/src/routes.tsx -------------------------------------------------------------------------------- /remote/src/routes/remote.index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swalker326/react-router-fog-of-war-example/HEAD/remote/src/routes/remote.index.tsx -------------------------------------------------------------------------------- /remote/src/routes/remote.nested-remote-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swalker326/react-router-fog-of-war-example/HEAD/remote/src/routes/remote.nested-remote-link.tsx -------------------------------------------------------------------------------- /remote/src/routes/remote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swalker326/react-router-fog-of-war-example/HEAD/remote/src/routes/remote.tsx -------------------------------------------------------------------------------- /remote/src/types-module-federation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swalker326/react-router-fog-of-war-example/HEAD/remote/src/types-module-federation.d.ts -------------------------------------------------------------------------------- /remote/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swalker326/react-router-fog-of-war-example/HEAD/remote/tsconfig.json --------------------------------------------------------------------------------