├── .editorconfig
├── .github
├── actions
│ └── setup
│ │ └── action.yml
└── workflows
│ └── build-deploy-test.yml
├── .gitignore
├── .nvmrc
├── EXAMPLES_INVENTORY.md
├── Justfile
├── README.md
├── nx
├── .gitignore
└── examples
│ └── mf-nx-rspack
│ ├── .editorconfig
│ ├── .gitignore
│ ├── .prettierignore
│ ├── .prettierrc
│ ├── .vscode
│ └── extensions.json
│ ├── README.md
│ ├── apps
│ ├── host
│ │ ├── eslint.config.mjs
│ │ ├── module-federation.config.ts
│ │ ├── package.json
│ │ ├── postcss.config.js
│ │ ├── project.json
│ │ ├── rspack.config.prod.ts
│ │ ├── rspack.config.ts
│ │ ├── src
│ │ │ ├── app
│ │ │ │ ├── app.tsx
│ │ │ │ └── nx-welcome.tsx
│ │ │ ├── assets
│ │ │ │ └── .gitkeep
│ │ │ ├── bootstrap.tsx
│ │ │ ├── favicon.ico
│ │ │ ├── index.html
│ │ │ ├── main.ts
│ │ │ ├── remotes.d.ts
│ │ │ └── styles.css
│ │ ├── tailwind.config.js
│ │ ├── tsconfig.app.json
│ │ └── tsconfig.json
│ ├── remote1
│ │ ├── eslint.config.mjs
│ │ ├── module-federation.config.ts
│ │ ├── package.json
│ │ ├── project.json
│ │ ├── rspack.config.prod.ts
│ │ ├── rspack.config.ts
│ │ ├── src
│ │ │ ├── app
│ │ │ │ └── app.tsx
│ │ │ ├── assets
│ │ │ │ └── .gitkeep
│ │ │ ├── bootstrap.tsx
│ │ │ ├── favicon.ico
│ │ │ ├── index.html
│ │ │ ├── main.ts
│ │ │ ├── remote-entry.ts
│ │ │ └── styles.css
│ │ ├── tsconfig.app.json
│ │ └── tsconfig.json
│ └── remote2
│ │ ├── eslint.config.mjs
│ │ ├── module-federation.config.ts
│ │ ├── package.json
│ │ ├── project.json
│ │ ├── rspack.config.prod.ts
│ │ ├── rspack.config.ts
│ │ ├── src
│ │ ├── app
│ │ │ └── app.tsx
│ │ ├── assets
│ │ │ └── .gitkeep
│ │ ├── bootstrap.tsx
│ │ ├── favicon.ico
│ │ ├── index.html
│ │ ├── main.ts
│ │ ├── remote-entry.ts
│ │ └── styles.css
│ │ ├── tsconfig.app.json
│ │ └── tsconfig.json
│ ├── eslint.config.mjs
│ ├── nx.json
│ ├── package.json
│ ├── pnpm-workspace.yaml
│ ├── tsconfig.base.json
│ └── tsconfig.json
├── scripts
├── .gitignore
├── README.md
├── package.json
├── playwright.config.js
├── pnpm-lock.yaml
├── src
│ ├── build-packages.ts
│ ├── tests
│ │ ├── app-validations.ts
│ │ ├── deployment-validation.spec.ts
│ │ └── test-helper.ts
│ ├── upgrade-plugins.ts
│ └── utils.ts
└── tsconfig.json
├── turborepo
├── .gitignore
└── examples
│ └── mf-turbo-rspack
│ ├── .gitignore
│ ├── .npmrc
│ ├── README.md
│ ├── apps
│ ├── home
│ │ ├── .gitignore
│ │ ├── README.md
│ │ ├── index.html
│ │ ├── module-federation.config.ts
│ │ ├── package.json
│ │ ├── postcss.config.mjs
│ │ ├── rspack.config.ts
│ │ ├── src
│ │ │ ├── App.css
│ │ │ ├── RemoteEntry.tsx
│ │ │ ├── bootstrap.css
│ │ │ ├── bootstrap.tsx
│ │ │ ├── main.tsx
│ │ │ └── react-env.d.ts
│ │ ├── tailwind.config.ts
│ │ └── tsconfig.json
│ ├── host
│ │ ├── .gitignore
│ │ ├── README.md
│ │ ├── index.html
│ │ ├── module-federation.config.ts
│ │ ├── package.json
│ │ ├── postcss.config.mjs
│ │ ├── rspack.config.ts
│ │ ├── src
│ │ │ ├── App.tsx
│ │ │ ├── bootstrap.css
│ │ │ ├── bootstrap.tsx
│ │ │ ├── components
│ │ │ │ ├── AppLayout.tsx
│ │ │ │ └── Header.tsx
│ │ │ ├── main.tsx
│ │ │ ├── react-env.d.ts
│ │ │ └── useLocalStorage.ts
│ │ ├── tailwind.config.ts
│ │ ├── tsconfig.json
│ │ └── turbo.json
│ └── settings
│ │ ├── .gitignore
│ │ ├── README.md
│ │ ├── index.html
│ │ ├── module-federation.config.ts
│ │ ├── package.json
│ │ ├── postcss.config.mjs
│ │ ├── rspack.config.ts
│ │ ├── src
│ │ ├── RemoteEntry.tsx
│ │ ├── bootstrap.css
│ │ ├── bootstrap.tsx
│ │ ├── main.tsx
│ │ └── react-env.d.ts
│ │ ├── tailwind.config.ts
│ │ └── tsconfig.json
│ ├── biome.json
│ ├── package.json
│ ├── packages
│ ├── config-tailwind
│ │ ├── package.json
│ │ ├── tailwind.config.ts
│ │ └── tsconfig.json
│ ├── typescript-config
│ │ ├── base.json
│ │ ├── mf-tsconfig.json
│ │ ├── nextjs.json
│ │ ├── package.json
│ │ └── react-library.json
│ └── ui
│ │ ├── package.json
│ │ ├── src
│ │ ├── button.tsx
│ │ ├── card.tsx
│ │ ├── code.tsx
│ │ └── header.tsx
│ │ ├── tsconfig.json
│ │ ├── tsconfig.lint.json
│ │ └── turbo
│ │ └── generators
│ │ ├── config.ts
│ │ └── templates
│ │ └── component.hbs
│ ├── pnpm-workspace.yaml
│ └── turbo.json
└── vanilla
├── .gitignore
├── examples
├── astro
│ ├── .gitignore
│ ├── .vscode
│ │ ├── extensions.json
│ │ └── launch.json
│ ├── README.md
│ ├── astro.config.mjs
│ ├── package.json
│ ├── public
│ │ ├── favicon.svg
│ │ └── fonts
│ │ │ ├── atkinson-bold.woff
│ │ │ └── atkinson-regular.woff
│ ├── src
│ │ ├── assets
│ │ │ ├── blog-placeholder-1.jpg
│ │ │ ├── blog-placeholder-2.jpg
│ │ │ ├── blog-placeholder-3.jpg
│ │ │ ├── blog-placeholder-4.jpg
│ │ │ ├── blog-placeholder-5.jpg
│ │ │ └── blog-placeholder-about.jpg
│ │ ├── components
│ │ │ ├── BaseHead.astro
│ │ │ ├── Footer.astro
│ │ │ ├── FormattedDate.astro
│ │ │ ├── Header.astro
│ │ │ └── HeaderLink.astro
│ │ ├── consts.ts
│ │ ├── content.config.ts
│ │ ├── content
│ │ │ └── blog
│ │ │ │ ├── first-post.md
│ │ │ │ ├── markdown-style-guide.md
│ │ │ │ ├── second-post.md
│ │ │ │ ├── third-post.md
│ │ │ │ └── using-mdx.mdx
│ │ ├── layouts
│ │ │ └── BlogPost.astro
│ │ ├── pages
│ │ │ ├── about.astro
│ │ │ ├── blog
│ │ │ │ ├── [...slug].astro
│ │ │ │ └── index.astro
│ │ │ ├── index.astro
│ │ │ └── rss.xml.js
│ │ └── styles
│ │ │ └── global.css
│ └── tsconfig.json
├── mf-airbnb-clone
│ ├── .gitignore
│ ├── README.md
│ ├── apps
│ │ ├── categories
│ │ │ ├── .babelrc
│ │ │ ├── package.json
│ │ │ ├── postcss.config.js
│ │ │ ├── public
│ │ │ │ ├── assets
│ │ │ │ │ └── favicon.ico
│ │ │ │ ├── images
│ │ │ │ │ └── listing-placeholder.png
│ │ │ │ └── index.html
│ │ │ ├── src
│ │ │ │ ├── app.tsx
│ │ │ │ ├── bootstrap.tsx
│ │ │ │ ├── components
│ │ │ │ │ ├── Categories.tsx
│ │ │ │ │ ├── CategoryBox.tsx
│ │ │ │ │ └── Container.tsx
│ │ │ │ ├── expose.tsx
│ │ │ │ ├── globals.css
│ │ │ │ └── index.ts
│ │ │ ├── tailwind.config.js
│ │ │ ├── tsconfig.json
│ │ │ └── webpack.config.js
│ │ ├── favorites
│ │ │ ├── .babelrc
│ │ │ ├── package.json
│ │ │ ├── postcss.config.js
│ │ │ ├── public
│ │ │ │ ├── assets
│ │ │ │ │ └── favicon.ico
│ │ │ │ ├── images
│ │ │ │ │ └── listing-placeholder.png
│ │ │ │ └── index.html
│ │ │ ├── src
│ │ │ │ ├── app.tsx
│ │ │ │ ├── bootstrap.tsx
│ │ │ │ ├── common
│ │ │ │ │ ├── actions
│ │ │ │ │ │ ├── deleteFavorite.ts
│ │ │ │ │ │ ├── getCurrentUser.ts
│ │ │ │ │ │ ├── getFavoriteListings.ts
│ │ │ │ │ │ ├── getListings.ts
│ │ │ │ │ │ ├── mocks
│ │ │ │ │ │ │ └── index.ts
│ │ │ │ │ │ ├── saveFavorite.ts
│ │ │ │ │ │ └── saveUser.ts
│ │ │ │ │ ├── hooks
│ │ │ │ │ │ ├── useCountries.ts
│ │ │ │ │ │ ├── useCurrentUser.ts
│ │ │ │ │ │ ├── useFavorite.ts
│ │ │ │ │ │ └── useLoginModal.ts
│ │ │ │ │ ├── libs
│ │ │ │ │ │ ├── axios.ts
│ │ │ │ │ │ └── fetcher.ts
│ │ │ │ │ └── types
│ │ │ │ │ │ └── index.ts
│ │ │ │ ├── components
│ │ │ │ │ ├── Button.tsx
│ │ │ │ │ ├── Container.tsx
│ │ │ │ │ ├── Heading.tsx
│ │ │ │ │ ├── HeartButton.tsx
│ │ │ │ │ └── listings
│ │ │ │ │ │ └── ListingCard.tsx
│ │ │ │ ├── custom.d.ts
│ │ │ │ ├── expose.tsx
│ │ │ │ ├── favorites.tsx
│ │ │ │ ├── globals.css
│ │ │ │ └── index.ts
│ │ │ ├── tailwind.config.js
│ │ │ ├── tsconfig.json
│ │ │ └── webpack.config.js
│ │ ├── home
│ │ │ ├── .babelrc
│ │ │ ├── package.json
│ │ │ ├── postcss.config.js
│ │ │ ├── public
│ │ │ │ ├── assets
│ │ │ │ │ └── favicon.ico
│ │ │ │ ├── images
│ │ │ │ │ └── listing-placeholder.png
│ │ │ │ └── index.html
│ │ │ ├── src
│ │ │ │ ├── app.tsx
│ │ │ │ ├── bootstrap.tsx
│ │ │ │ ├── common
│ │ │ │ │ ├── actions
│ │ │ │ │ │ ├── deleteListings.ts
│ │ │ │ │ │ ├── getCurrentUser.ts
│ │ │ │ │ │ ├── getListings.ts
│ │ │ │ │ │ ├── mocks
│ │ │ │ │ │ │ └── index.ts
│ │ │ │ │ │ └── saveUser.ts
│ │ │ │ │ ├── hooks
│ │ │ │ │ │ ├── useCountries.ts
│ │ │ │ │ │ ├── useCurrentUser.ts
│ │ │ │ │ │ ├── useFavorite.ts
│ │ │ │ │ │ ├── useListings.ts
│ │ │ │ │ │ └── useLoginModal.ts
│ │ │ │ │ ├── libs
│ │ │ │ │ │ ├── axios.ts
│ │ │ │ │ │ └── fetcher.ts
│ │ │ │ │ └── types
│ │ │ │ │ │ └── index.ts
│ │ │ │ ├── components
│ │ │ │ │ ├── Button.tsx
│ │ │ │ │ ├── Container.tsx
│ │ │ │ │ ├── HeartButton.tsx
│ │ │ │ │ └── listings
│ │ │ │ │ │ └── ListingCard.tsx
│ │ │ │ ├── custom.d.ts
│ │ │ │ ├── expose.tsx
│ │ │ │ ├── globals.css
│ │ │ │ ├── home.tsx
│ │ │ │ └── index.ts
│ │ │ ├── tailwind.config.js
│ │ │ ├── tsconfig.json
│ │ │ └── webpack.config.js
│ │ ├── properties
│ │ │ ├── .babelrc
│ │ │ ├── package.json
│ │ │ ├── postcss.config.js
│ │ │ ├── public
│ │ │ │ ├── assets
│ │ │ │ │ └── favicon.ico
│ │ │ │ ├── images
│ │ │ │ │ └── listing-placeholder.png
│ │ │ │ └── index.html
│ │ │ ├── src
│ │ │ │ ├── app.tsx
│ │ │ │ ├── bootstrap.tsx
│ │ │ │ ├── common
│ │ │ │ │ ├── actions
│ │ │ │ │ │ ├── deleteListings.ts
│ │ │ │ │ │ ├── getCurrentUser.ts
│ │ │ │ │ │ ├── getListings.ts
│ │ │ │ │ │ ├── mocks
│ │ │ │ │ │ │ └── index.ts
│ │ │ │ │ │ └── saveUser.ts
│ │ │ │ │ ├── hooks
│ │ │ │ │ │ ├── useCountries.ts
│ │ │ │ │ │ ├── useCurrentUser.ts
│ │ │ │ │ │ ├── useFavorite.ts
│ │ │ │ │ │ ├── useListings.ts
│ │ │ │ │ │ └── useLoginModal.ts
│ │ │ │ │ ├── libs
│ │ │ │ │ │ ├── axios.ts
│ │ │ │ │ │ └── fetcher.ts
│ │ │ │ │ └── types
│ │ │ │ │ │ └── index.ts
│ │ │ │ ├── components
│ │ │ │ │ ├── Button.tsx
│ │ │ │ │ ├── Container.tsx
│ │ │ │ │ ├── Heading.tsx
│ │ │ │ │ ├── HeartButton.tsx
│ │ │ │ │ └── listings
│ │ │ │ │ │ └── ListingCard.tsx
│ │ │ │ ├── custom.d.ts
│ │ │ │ ├── expose.tsx
│ │ │ │ ├── globals.css
│ │ │ │ ├── index.ts
│ │ │ │ └── properties.tsx
│ │ │ ├── tailwind.config.js
│ │ │ ├── tsconfig.json
│ │ │ └── webpack.config.js
│ │ ├── react-host
│ │ │ ├── .babelrc
│ │ │ ├── federated.d.ts
│ │ │ ├── package.json
│ │ │ ├── postcss.config.js
│ │ │ ├── public
│ │ │ │ ├── assets
│ │ │ │ │ └── favicon.ico
│ │ │ │ ├── images
│ │ │ │ │ ├── listing-placeholder.png
│ │ │ │ │ ├── logo.png
│ │ │ │ │ └── placeholder.jpg
│ │ │ │ └── index.html
│ │ │ ├── src
│ │ │ │ ├── _error.tsx
│ │ │ │ ├── bootstrap.tsx
│ │ │ │ ├── common
│ │ │ │ │ ├── actions
│ │ │ │ │ │ ├── deleteFavorite.ts
│ │ │ │ │ │ ├── deleteListings.ts
│ │ │ │ │ │ ├── deleteReservation.ts
│ │ │ │ │ │ ├── getCurrentUser.ts
│ │ │ │ │ │ ├── getFavoriteListings.ts
│ │ │ │ │ │ ├── getListingById.ts
│ │ │ │ │ │ ├── getListings.ts
│ │ │ │ │ │ ├── getReservations.ts
│ │ │ │ │ │ ├── mocks
│ │ │ │ │ │ │ └── index.ts
│ │ │ │ │ │ ├── saveFavorite.ts
│ │ │ │ │ │ ├── saveListing.ts
│ │ │ │ │ │ ├── saveReservation.ts
│ │ │ │ │ │ └── saveUser.ts
│ │ │ │ │ ├── hooks
│ │ │ │ │ │ ├── useCountries.ts
│ │ │ │ │ │ ├── useCurrentUser.ts
│ │ │ │ │ │ ├── useFavorite.ts
│ │ │ │ │ │ ├── useFavorites.ts
│ │ │ │ │ │ ├── useListing.ts
│ │ │ │ │ │ ├── useListings.ts
│ │ │ │ │ │ ├── useLoginModal.ts
│ │ │ │ │ │ ├── useRegisterModal.ts
│ │ │ │ │ │ ├── useRentModal.ts
│ │ │ │ │ │ ├── useReservations.ts
│ │ │ │ │ │ ├── useSearchModal.ts
│ │ │ │ │ │ └── useShowRemotes.ts
│ │ │ │ │ ├── libs
│ │ │ │ │ │ ├── axios.ts
│ │ │ │ │ │ └── fetcher.ts
│ │ │ │ │ └── types
│ │ │ │ │ │ └── index.ts
│ │ │ │ ├── components
│ │ │ │ │ ├── Avatar.tsx
│ │ │ │ │ ├── Button.tsx
│ │ │ │ │ ├── Container.tsx
│ │ │ │ │ ├── EmptyState.tsx
│ │ │ │ │ ├── Heading.tsx
│ │ │ │ │ ├── HeartButton.tsx
│ │ │ │ │ ├── Loader.tsx
│ │ │ │ │ ├── Map.tsx
│ │ │ │ │ ├── RemoteWrap.tsx
│ │ │ │ │ ├── inputs
│ │ │ │ │ │ ├── Calendar.tsx
│ │ │ │ │ │ ├── CategoryInput.tsx
│ │ │ │ │ │ ├── Counter.tsx
│ │ │ │ │ │ ├── CountrySelect.tsx
│ │ │ │ │ │ ├── ImageUpload.tsx
│ │ │ │ │ │ ├── Input.tsx
│ │ │ │ │ │ └── calendar-styles.css
│ │ │ │ │ ├── listings
│ │ │ │ │ │ ├── ListingCard.tsx
│ │ │ │ │ │ ├── ListingCategory.tsx
│ │ │ │ │ │ ├── ListingHead.tsx
│ │ │ │ │ │ ├── ListingInfo.tsx
│ │ │ │ │ │ └── ListingReservation.tsx
│ │ │ │ │ ├── map-styles.css
│ │ │ │ │ ├── modals
│ │ │ │ │ │ ├── LoginModal.tsx
│ │ │ │ │ │ ├── Modal.tsx
│ │ │ │ │ │ ├── RegisterModal.tsx
│ │ │ │ │ │ ├── RentModal.tsx
│ │ │ │ │ │ └── SearchModal.tsx
│ │ │ │ │ └── navbar
│ │ │ │ │ │ ├── Logo.tsx
│ │ │ │ │ │ ├── MenuItem.tsx
│ │ │ │ │ │ ├── Navbar.tsx
│ │ │ │ │ │ ├── RemoteToggle.tsx
│ │ │ │ │ │ ├── Search.tsx
│ │ │ │ │ │ ├── UserMenu.tsx
│ │ │ │ │ │ └── categories.tsx
│ │ │ │ ├── custom.d.ts
│ │ │ │ ├── globals.css
│ │ │ │ ├── index.ts
│ │ │ │ ├── layout.tsx
│ │ │ │ ├── pages
│ │ │ │ │ ├── favorites
│ │ │ │ │ │ └── index.tsx
│ │ │ │ │ ├── home
│ │ │ │ │ │ └── index.tsx
│ │ │ │ │ ├── listings
│ │ │ │ │ │ └── index.tsx
│ │ │ │ │ ├── properties
│ │ │ │ │ │ └── index.tsx
│ │ │ │ │ ├── reservations
│ │ │ │ │ │ └── index.tsx
│ │ │ │ │ └── trips
│ │ │ │ │ │ └── index.tsx
│ │ │ │ ├── providers
│ │ │ │ │ ├── ModalsProvider.tsx
│ │ │ │ │ └── ToasterProvider.tsx
│ │ │ │ ├── routes.tsx
│ │ │ │ └── templates
│ │ │ │ │ └── ListingClient.tsx
│ │ │ ├── tailwind.config.js
│ │ │ ├── tsconfig.json
│ │ │ └── webpack.config.js
│ │ ├── reservations
│ │ │ ├── .babelrc
│ │ │ ├── package.json
│ │ │ ├── postcss.config.js
│ │ │ ├── public
│ │ │ │ ├── assets
│ │ │ │ │ └── favicon.ico
│ │ │ │ ├── images
│ │ │ │ │ └── listing-placeholder.png
│ │ │ │ └── index.html
│ │ │ ├── src
│ │ │ │ ├── app.tsx
│ │ │ │ ├── bootstrap.tsx
│ │ │ │ ├── common
│ │ │ │ │ ├── actions
│ │ │ │ │ │ ├── deleteListings.ts
│ │ │ │ │ │ ├── getCurrentUser.ts
│ │ │ │ │ │ ├── getListings.ts
│ │ │ │ │ │ ├── getReservations.ts
│ │ │ │ │ │ ├── mocks
│ │ │ │ │ │ │ └── index.ts
│ │ │ │ │ │ └── saveUser.ts
│ │ │ │ │ ├── hooks
│ │ │ │ │ │ ├── useCountries.ts
│ │ │ │ │ │ ├── useCurrentUser.ts
│ │ │ │ │ │ ├── useFavorite.ts
│ │ │ │ │ │ ├── useListings.ts
│ │ │ │ │ │ ├── useLoginModal.ts
│ │ │ │ │ │ └── useReservations.ts
│ │ │ │ │ ├── libs
│ │ │ │ │ │ ├── axios.ts
│ │ │ │ │ │ └── fetcher.ts
│ │ │ │ │ └── types
│ │ │ │ │ │ └── index.ts
│ │ │ │ ├── components
│ │ │ │ │ ├── Button.tsx
│ │ │ │ │ ├── Container.tsx
│ │ │ │ │ ├── Heading.tsx
│ │ │ │ │ ├── HeartButton.tsx
│ │ │ │ │ └── listings
│ │ │ │ │ │ └── ListingCard.tsx
│ │ │ │ ├── custom.d.ts
│ │ │ │ ├── expose.tsx
│ │ │ │ ├── globals.css
│ │ │ │ ├── index.ts
│ │ │ │ └── reservations.tsx
│ │ │ ├── tailwind.config.js
│ │ │ ├── tsconfig.json
│ │ │ └── webpack.config.js
│ │ └── trips
│ │ │ ├── .babelrc
│ │ │ ├── package.json
│ │ │ ├── postcss.config.js
│ │ │ ├── public
│ │ │ ├── assets
│ │ │ │ └── favicon.ico
│ │ │ ├── images
│ │ │ │ └── listing-placeholder.png
│ │ │ └── index.html
│ │ │ ├── src
│ │ │ ├── app.tsx
│ │ │ ├── bootstrap.tsx
│ │ │ ├── common
│ │ │ │ ├── actions
│ │ │ │ │ ├── deleteListings.ts
│ │ │ │ │ ├── getCurrentUser.ts
│ │ │ │ │ ├── getListings.ts
│ │ │ │ │ ├── getReservations.ts
│ │ │ │ │ ├── mocks
│ │ │ │ │ │ └── index.ts
│ │ │ │ │ └── saveUser.ts
│ │ │ │ ├── hooks
│ │ │ │ │ ├── useCountries.ts
│ │ │ │ │ ├── useCurrentUser.ts
│ │ │ │ │ ├── useFavorite.ts
│ │ │ │ │ ├── useListings.ts
│ │ │ │ │ ├── useLoginModal.ts
│ │ │ │ │ └── useReservations.ts
│ │ │ │ ├── libs
│ │ │ │ │ ├── axios.ts
│ │ │ │ │ └── fetcher.ts
│ │ │ │ └── types
│ │ │ │ │ └── index.ts
│ │ │ ├── components
│ │ │ │ ├── Button.tsx
│ │ │ │ ├── Container.tsx
│ │ │ │ ├── Heading.tsx
│ │ │ │ ├── HeartButton.tsx
│ │ │ │ └── listings
│ │ │ │ │ └── ListingCard.tsx
│ │ │ ├── custom.d.ts
│ │ │ ├── expose.tsx
│ │ │ ├── globals.css
│ │ │ ├── index.ts
│ │ │ └── trips.tsx
│ │ │ ├── tailwind.config.js
│ │ │ ├── tsconfig.json
│ │ │ └── webpack.config.js
│ ├── package.json
│ ├── pnpm-workspace.yaml
│ └── tsconfig.base.json
├── mf-react-rsbuild
│ ├── consumer
│ │ ├── .gitignore
│ │ ├── module-federation.config.ts
│ │ ├── package.json
│ │ ├── rsbuild.config.ts
│ │ ├── src
│ │ │ ├── App.css
│ │ │ ├── App.tsx
│ │ │ ├── bootstrap.tsx
│ │ │ └── index.ts
│ │ └── tsconfig.json
│ ├── package.json
│ ├── pnpm-workspace.yaml
│ └── provider
│ │ ├── .gitignore
│ │ ├── package.json
│ │ ├── rsbuild.config.ts
│ │ ├── src
│ │ ├── App.tsx
│ │ ├── Button.tsx
│ │ ├── bootstrap.tsx
│ │ └── index.ts
│ │ └── tsconfig.json
├── mf-react-vite-rspack-webpack
│ ├── .gitignore
│ ├── host
│ │ ├── .gitignore
│ │ ├── README.md
│ │ ├── eslint.config.js
│ │ ├── index.html
│ │ ├── package.json
│ │ ├── public
│ │ │ └── vite.svg
│ │ ├── src
│ │ │ ├── App.css
│ │ │ ├── App.tsx
│ │ │ ├── assets
│ │ │ │ └── react.svg
│ │ │ ├── bootstrap.tsx
│ │ │ ├── index.css
│ │ │ ├── main.tsx
│ │ │ └── vite-env.d.ts
│ │ ├── tsconfig.app.json
│ │ ├── tsconfig.json
│ │ ├── tsconfig.node.json
│ │ └── vite.config.ts
│ ├── image.png
│ ├── package.json
│ ├── readme.md
│ ├── remote
│ │ ├── .gitignore
│ │ ├── eslint.config.js
│ │ ├── index.html
│ │ ├── package.json
│ │ ├── public
│ │ │ └── vite.svg
│ │ ├── src
│ │ │ ├── App.css
│ │ │ ├── App.tsx
│ │ │ ├── Button.css
│ │ │ ├── Button.tsx
│ │ │ ├── assets
│ │ │ │ └── react.svg
│ │ │ ├── bootstrap.tsx
│ │ │ ├── index.css
│ │ │ ├── main.tsx
│ │ │ └── vite-env.d.ts
│ │ ├── tsconfig.app.json
│ │ ├── tsconfig.json
│ │ ├── tsconfig.node.json
│ │ └── vite.config.ts
│ ├── rspack
│ │ ├── .babelrc
│ │ ├── .gitignore
│ │ ├── compilation.config.js
│ │ ├── package.json
│ │ ├── postcss.config.js
│ │ ├── rspack.config.js
│ │ ├── src
│ │ │ ├── App.tsx
│ │ │ ├── Image.tsx
│ │ │ ├── assets
│ │ │ │ └── rspack-logo.png
│ │ │ ├── global.d.ts
│ │ │ ├── index.css
│ │ │ ├── index.html
│ │ │ └── index.tsx
│ │ ├── tailwind.config.js
│ │ └── tsconfig.json
│ └── webpack
│ │ ├── .babelrc
│ │ ├── .gitignore
│ │ ├── compilation.config.js
│ │ ├── package.json
│ │ ├── postcss.config.js
│ │ ├── src
│ │ ├── App.tsx
│ │ ├── Image.tsx
│ │ ├── assets
│ │ │ └── webpack-logo.png
│ │ ├── global.d.ts
│ │ ├── index.html
│ │ ├── index.scss
│ │ └── index.ts
│ │ ├── tailwind.config.js
│ │ ├── tsconfig.json
│ │ └── webpack.config.js
├── mf-react-webpack
│ ├── README.md
│ ├── app1
│ │ ├── module-federation.config.js
│ │ ├── package.json
│ │ ├── public
│ │ │ └── index.html
│ │ ├── src
│ │ │ ├── App.js
│ │ │ ├── bootstrap.js
│ │ │ └── index.js
│ │ └── webpack.config.js
│ ├── app2
│ │ ├── module-federation.config.js
│ │ ├── package.json
│ │ ├── public
│ │ │ └── index.html
│ │ ├── src
│ │ │ ├── App.js
│ │ │ ├── bootstrap.js
│ │ │ └── index.js
│ │ └── webpack.config.js
│ └── package.json
├── mf-tractor-sample
│ ├── .gitignore
│ ├── .prettierrc
│ ├── README.md
│ ├── apps
│ │ ├── app
│ │ │ ├── index.html
│ │ │ ├── package.json
│ │ │ ├── rspack.config.js
│ │ │ ├── src
│ │ │ │ ├── bootstrap.tsx
│ │ │ │ ├── index.tsx
│ │ │ │ ├── router.tsx
│ │ │ │ └── style.css
│ │ │ └── tsconfig.json
│ │ ├── checkout
│ │ │ ├── index.html
│ │ │ ├── package.json
│ │ │ ├── rspack.config.js
│ │ │ ├── src
│ │ │ │ ├── AddToCart.tsx
│ │ │ │ ├── CartPage.tsx
│ │ │ │ ├── Checkout.tsx
│ │ │ │ ├── MiniCart.tsx
│ │ │ │ ├── Thanks.tsx
│ │ │ │ ├── bootstrap.tsx
│ │ │ │ ├── components
│ │ │ │ │ ├── Button.tsx
│ │ │ │ │ ├── CompactHeader.tsx
│ │ │ │ │ └── LineItem.tsx
│ │ │ │ ├── css
│ │ │ │ │ ├── AddToCart.css
│ │ │ │ │ ├── Button.css
│ │ │ │ │ ├── CartPage.css
│ │ │ │ │ ├── Checkout.css
│ │ │ │ │ ├── CompactHeader.css
│ │ │ │ │ ├── LineItem.css
│ │ │ │ │ ├── MiniCart.css
│ │ │ │ │ ├── Thanks.css
│ │ │ │ │ └── index.css
│ │ │ │ ├── data
│ │ │ │ │ ├── db.json
│ │ │ │ │ └── store.ts
│ │ │ │ ├── index.tsx
│ │ │ │ ├── js
│ │ │ │ │ └── utils.ts
│ │ │ │ ├── router.tsx
│ │ │ │ └── style.css
│ │ │ └── tsconfig.json
│ │ ├── decide
│ │ │ ├── index.html
│ │ │ ├── package.json
│ │ │ ├── rspack.config.js
│ │ │ ├── src
│ │ │ │ ├── ProductPage.tsx
│ │ │ │ ├── bootstrap.tsx
│ │ │ │ ├── components
│ │ │ │ │ └── VariantOption.tsx
│ │ │ │ ├── css
│ │ │ │ │ ├── ProductPage.css
│ │ │ │ │ ├── VariantOption.css
│ │ │ │ │ └── index.css
│ │ │ │ ├── data
│ │ │ │ │ └── db.json
│ │ │ │ ├── index.tsx
│ │ │ │ ├── js
│ │ │ │ │ └── utils.ts
│ │ │ │ ├── router.tsx
│ │ │ │ └── style.css
│ │ │ └── tsconfig.json
│ │ └── explore
│ │ │ ├── index.html
│ │ │ ├── package.json
│ │ │ ├── rspack.config.js
│ │ │ ├── src
│ │ │ ├── CategoryPage.tsx
│ │ │ ├── Footer.tsx
│ │ │ ├── Header.tsx
│ │ │ ├── HomePage.tsx
│ │ │ ├── Recommendations.tsx
│ │ │ ├── StorePicker.tsx
│ │ │ ├── StoresPage.tsx
│ │ │ ├── bootstrap.tsx
│ │ │ ├── components
│ │ │ │ ├── Button.tsx
│ │ │ │ ├── Filter.tsx
│ │ │ │ ├── Navigation.tsx
│ │ │ │ ├── Product.tsx
│ │ │ │ ├── Recommendation.tsx
│ │ │ │ └── Store.tsx
│ │ │ ├── css
│ │ │ │ ├── Button.css
│ │ │ │ ├── CategoryPage.css
│ │ │ │ ├── Filter.css
│ │ │ │ ├── Footer.css
│ │ │ │ ├── Header.css
│ │ │ │ ├── HomePage.css
│ │ │ │ ├── Navigation.css
│ │ │ │ ├── Product.css
│ │ │ │ ├── Recommendation.css
│ │ │ │ ├── Recommendations.css
│ │ │ │ ├── StorePicker.css
│ │ │ │ ├── StoresPage.css
│ │ │ │ └── index.css
│ │ │ ├── data
│ │ │ │ └── db.json
│ │ │ ├── index.tsx
│ │ │ ├── js
│ │ │ │ └── utils.ts
│ │ │ ├── router.tsx
│ │ │ └── style.css
│ │ │ └── tsconfig.json
│ └── package.json
├── modernjs
│ ├── README.md
│ ├── biome.json
│ ├── modern.config.ts
│ ├── package.json
│ ├── src
│ │ ├── modern-app-env.d.ts
│ │ ├── modern.runtime.ts
│ │ └── routes
│ │ │ ├── index.css
│ │ │ ├── layout.tsx
│ │ │ └── page.tsx
│ └── tsconfig.json
├── parcel-react
│ ├── .parcelrc
│ ├── README.md
│ ├── index.html
│ ├── package.json
│ ├── src
│ │ ├── App.tsx
│ │ └── index.tsx
│ └── tsconfig.json
├── rolldown-react
│ ├── README.md
│ ├── package.json
│ ├── rolldown.config.mjs
│ ├── src
│ │ ├── App.tsx
│ │ └── main.tsx
│ └── tsconfig.json
├── rollup-react
│ ├── .gitignore
│ ├── README.md
│ ├── package.json
│ ├── rollup.config.mjs
│ ├── src
│ │ ├── App.tsx
│ │ ├── assets
│ │ │ ├── react.svg
│ │ │ └── rollup.svg
│ │ ├── index.tsx
│ │ ├── styles.css
│ │ └── types.d.ts
│ └── tsconfig.json
├── rspack-react
│ ├── .gitignore
│ ├── AGENTS.md
│ ├── README.md
│ ├── index.html
│ ├── package.json
│ ├── rspack.config.ts
│ ├── src
│ │ ├── App.css
│ │ ├── App.tsx
│ │ ├── assets
│ │ │ └── react.svg
│ │ ├── index.css
│ │ ├── main.tsx
│ │ └── react-env.d.ts
│ └── tsconfig.json
├── rspress
│ ├── .gitignore
│ ├── README.md
│ ├── docs
│ │ ├── _meta.json
│ │ ├── guide
│ │ │ ├── _meta.json
│ │ │ └── index.md
│ │ ├── hello.md
│ │ ├── index.md
│ │ └── public
│ │ │ ├── rspress-dark-logo.png
│ │ │ ├── rspress-icon.png
│ │ │ └── rspress-light-logo.png
│ ├── package.json
│ ├── rspress.config.ts
│ └── tsconfig.json
├── tsdown
│ ├── .github
│ │ └── workflows
│ │ │ ├── release.yml
│ │ │ └── unit-test.yml
│ ├── .gitignore
│ ├── .vscode
│ │ └── settings.json
│ ├── README.md
│ ├── package.json
│ ├── playground
│ │ ├── index.html
│ │ ├── src
│ │ │ ├── App.tsx
│ │ │ ├── index.tsx
│ │ │ └── style.css
│ │ └── vite.config.ts
│ ├── src
│ │ ├── MyButton.tsx
│ │ └── index.ts
│ ├── tests
│ │ ├── index.test.tsx
│ │ └── setup.ts
│ ├── tsconfig.json
│ ├── tsdown.config.ts
│ └── vitest.config.ts
├── vite-angular
│ ├── .gitignore
│ ├── README.md
│ ├── index.html
│ ├── package.json
│ ├── public
│ │ ├── angular.svg
│ │ └── vite.svg
│ ├── src
│ │ ├── app.component.ts
│ │ ├── main.ts
│ │ ├── style.css
│ │ └── vite-env.d.ts
│ ├── tsconfig.app.json
│ ├── tsconfig.json
│ └── vite.config.ts
├── vite-ember
│ ├── .editorconfig
│ ├── .ember-cli
│ ├── .github
│ │ └── workflows
│ │ │ └── ci.yml
│ ├── .gitignore
│ ├── .prettierignore
│ ├── .prettierrc.js
│ ├── .stylelintignore
│ ├── .stylelintrc.js
│ ├── .template-lintrc.js
│ ├── .watchmanconfig
│ ├── README.md
│ ├── app
│ │ ├── app.js
│ │ ├── components
│ │ │ └── .gitkeep
│ │ ├── config
│ │ │ └── environment.js
│ │ ├── controllers
│ │ │ └── .gitkeep
│ │ ├── deprecation-workflow.js
│ │ ├── helpers
│ │ │ └── .gitkeep
│ │ ├── models
│ │ │ └── .gitkeep
│ │ ├── router.js
│ │ ├── routes
│ │ │ └── .gitkeep
│ │ ├── styles
│ │ │ └── app.css
│ │ └── templates
│ │ │ └── application.gjs
│ ├── babel.config.cjs
│ ├── config
│ │ ├── ember-cli-update.json
│ │ ├── environment.js
│ │ ├── optional-features.json
│ │ └── targets.js
│ ├── ember-cli-build.js
│ ├── eslint.config.mjs
│ ├── index.html
│ ├── package.json
│ ├── public
│ │ └── robots.txt
│ ├── testem.cjs
│ ├── tests
│ │ ├── helpers
│ │ │ └── index.js
│ │ ├── index.html
│ │ ├── integration
│ │ │ └── .gitkeep
│ │ ├── test-helper.js
│ │ └── unit
│ │ │ └── .gitkeep
│ └── vite.config.mjs
├── vite-react
│ ├── .eslintrc.cjs
│ ├── .gitignore
│ ├── README.md
│ ├── index.html
│ ├── package.json
│ ├── public
│ │ └── vite.svg
│ ├── src
│ │ ├── App.css
│ │ ├── App.tsx
│ │ ├── assets
│ │ │ └── react.svg
│ │ ├── index.css
│ │ ├── main.tsx
│ │ └── vite-env.d.ts
│ ├── tsconfig.json
│ ├── tsconfig.node.json
│ └── vite.config.ts
├── vite-solid
│ ├── .gitignore
│ ├── README.md
│ ├── index.html
│ ├── package.json
│ ├── public
│ │ └── vite.svg
│ ├── src
│ │ ├── App.css
│ │ ├── App.tsx
│ │ ├── assets
│ │ │ └── solid.svg
│ │ ├── index.css
│ │ ├── index.tsx
│ │ └── vite-env.d.ts
│ ├── tsconfig.app.json
│ ├── tsconfig.json
│ ├── tsconfig.node.json
│ └── vite.config.ts
└── vite-svelte
│ ├── .gitignore
│ ├── README.md
│ ├── index.html
│ ├── package.json
│ ├── public
│ └── vite.svg
│ ├── src
│ ├── App.svelte
│ ├── app.css
│ ├── assets
│ │ └── svelte.svg
│ ├── lib
│ │ └── Counter.svelte
│ ├── main.ts
│ └── vite-env.d.ts
│ ├── svelte.config.js
│ ├── tsconfig.app.json
│ ├── tsconfig.json
│ ├── tsconfig.node.json
│ └── vite.config.ts
├── package.json
└── pnpm-workspace.yaml
/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/.editorconfig
--------------------------------------------------------------------------------
/.github/actions/setup/action.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/.github/actions/setup/action.yml
--------------------------------------------------------------------------------
/.github/workflows/build-deploy-test.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/.github/workflows/build-deploy-test.yml
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/.gitignore
--------------------------------------------------------------------------------
/.nvmrc:
--------------------------------------------------------------------------------
1 | 24
2 |
--------------------------------------------------------------------------------
/EXAMPLES_INVENTORY.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/EXAMPLES_INVENTORY.md
--------------------------------------------------------------------------------
/Justfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/Justfile
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/README.md
--------------------------------------------------------------------------------
/nx/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | dist
3 | .nx
4 | *.log
5 | pnpm-lock.yaml
6 |
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/.editorconfig
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/.gitignore
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/.prettierignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/.prettierignore
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "singleQuote": true
3 | }
4 |
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/.vscode/extensions.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/.vscode/extensions.json
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/README.md
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/host/eslint.config.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/host/eslint.config.mjs
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/host/module-federation.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/host/module-federation.config.ts
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/host/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/host/package.json
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/host/postcss.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/host/postcss.config.js
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/host/project.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/host/project.json
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/host/rspack.config.prod.ts:
--------------------------------------------------------------------------------
1 | export { default } from './rspack.config';
2 |
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/host/rspack.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/host/rspack.config.ts
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/host/src/app/app.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/host/src/app/app.tsx
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/host/src/app/nx-welcome.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/host/src/app/nx-welcome.tsx
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/host/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/host/src/bootstrap.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/host/src/bootstrap.tsx
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/host/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/host/src/favicon.ico
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/host/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/host/src/index.html
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/host/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/host/src/main.ts
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/host/src/remotes.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/host/src/remotes.d.ts
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/host/src/styles.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/host/src/styles.css
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/host/tailwind.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/host/tailwind.config.js
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/host/tsconfig.app.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/host/tsconfig.app.json
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/host/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/host/tsconfig.json
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/remote1/eslint.config.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/remote1/eslint.config.mjs
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/remote1/module-federation.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/remote1/module-federation.config.ts
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/remote1/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/remote1/package.json
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/remote1/project.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/remote1/project.json
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/remote1/rspack.config.prod.ts:
--------------------------------------------------------------------------------
1 | export { default } from './rspack.config';
2 |
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/remote1/rspack.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/remote1/rspack.config.ts
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/remote1/src/app/app.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/remote1/src/app/app.tsx
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/remote1/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/remote1/src/bootstrap.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/remote1/src/bootstrap.tsx
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/remote1/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/remote1/src/favicon.ico
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/remote1/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/remote1/src/index.html
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/remote1/src/main.ts:
--------------------------------------------------------------------------------
1 | import('./bootstrap');
2 |
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/remote1/src/remote-entry.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/remote1/src/remote-entry.ts
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/remote1/src/styles.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/remote1/src/styles.css
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/remote1/tsconfig.app.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/remote1/tsconfig.app.json
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/remote1/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/remote1/tsconfig.json
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/remote2/eslint.config.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/remote2/eslint.config.mjs
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/remote2/module-federation.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/remote2/module-federation.config.ts
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/remote2/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/remote2/package.json
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/remote2/project.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/remote2/project.json
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/remote2/rspack.config.prod.ts:
--------------------------------------------------------------------------------
1 | export { default } from './rspack.config';
2 |
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/remote2/rspack.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/remote2/rspack.config.ts
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/remote2/src/app/app.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/remote2/src/app/app.tsx
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/remote2/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/remote2/src/bootstrap.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/remote2/src/bootstrap.tsx
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/remote2/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/remote2/src/favicon.ico
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/remote2/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/remote2/src/index.html
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/remote2/src/main.ts:
--------------------------------------------------------------------------------
1 | import('./bootstrap');
2 |
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/remote2/src/remote-entry.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/remote2/src/remote-entry.ts
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/remote2/src/styles.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/remote2/src/styles.css
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/remote2/tsconfig.app.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/remote2/tsconfig.app.json
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/apps/remote2/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/apps/remote2/tsconfig.json
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/eslint.config.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/eslint.config.mjs
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/nx.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/nx.json
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/package.json
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/pnpm-workspace.yaml:
--------------------------------------------------------------------------------
1 | packages:
2 | - "apps/*"
3 |
4 | autoInstallPeers: true
5 |
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/tsconfig.base.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/tsconfig.base.json
--------------------------------------------------------------------------------
/nx/examples/mf-nx-rspack/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/nx/examples/mf-nx-rspack/tsconfig.json
--------------------------------------------------------------------------------
/scripts/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/scripts/.gitignore
--------------------------------------------------------------------------------
/scripts/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/scripts/README.md
--------------------------------------------------------------------------------
/scripts/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/scripts/package.json
--------------------------------------------------------------------------------
/scripts/playwright.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/scripts/playwright.config.js
--------------------------------------------------------------------------------
/scripts/pnpm-lock.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/scripts/pnpm-lock.yaml
--------------------------------------------------------------------------------
/scripts/src/build-packages.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/scripts/src/build-packages.ts
--------------------------------------------------------------------------------
/scripts/src/tests/app-validations.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/scripts/src/tests/app-validations.ts
--------------------------------------------------------------------------------
/scripts/src/tests/deployment-validation.spec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/scripts/src/tests/deployment-validation.spec.ts
--------------------------------------------------------------------------------
/scripts/src/tests/test-helper.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/scripts/src/tests/test-helper.ts
--------------------------------------------------------------------------------
/scripts/src/upgrade-plugins.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/scripts/src/upgrade-plugins.ts
--------------------------------------------------------------------------------
/scripts/src/utils.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/scripts/src/utils.ts
--------------------------------------------------------------------------------
/scripts/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/scripts/tsconfig.json
--------------------------------------------------------------------------------
/turborepo/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | dist
3 | .turbo
4 | *.log
5 | pnpm-lock.yaml
6 |
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/.gitignore
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/.npmrc:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/README.md
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/home/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/home/.gitignore
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/home/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/home/README.md
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/home/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/home/index.html
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/home/module-federation.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/home/module-federation.config.ts
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/home/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/home/package.json
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/home/postcss.config.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/home/postcss.config.mjs
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/home/rspack.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/home/rspack.config.ts
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/home/src/App.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/home/src/App.css
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/home/src/RemoteEntry.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/home/src/RemoteEntry.tsx
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/home/src/bootstrap.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/home/src/bootstrap.css
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/home/src/bootstrap.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/home/src/bootstrap.tsx
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/home/src/main.tsx:
--------------------------------------------------------------------------------
1 | import("./bootstrap");
2 |
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/home/src/react-env.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/home/src/react-env.d.ts
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/home/tailwind.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/home/tailwind.config.ts
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/home/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/home/tsconfig.json
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/host/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/host/.gitignore
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/host/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/host/README.md
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/host/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/host/index.html
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/host/module-federation.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/host/module-federation.config.ts
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/host/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/host/package.json
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/host/postcss.config.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/host/postcss.config.mjs
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/host/rspack.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/host/rspack.config.ts
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/host/src/App.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/host/src/App.tsx
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/host/src/bootstrap.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/host/src/bootstrap.css
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/host/src/bootstrap.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/host/src/bootstrap.tsx
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/host/src/components/AppLayout.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/host/src/components/AppLayout.tsx
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/host/src/components/Header.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/host/src/components/Header.tsx
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/host/src/main.tsx:
--------------------------------------------------------------------------------
1 | import("./bootstrap");
2 |
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/host/src/react-env.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/host/src/react-env.d.ts
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/host/src/useLocalStorage.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/host/src/useLocalStorage.ts
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/host/tailwind.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/host/tailwind.config.ts
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/host/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/host/tsconfig.json
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/host/turbo.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/host/turbo.json
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/settings/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/settings/.gitignore
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/settings/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/settings/README.md
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/settings/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/settings/index.html
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/settings/module-federation.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/settings/module-federation.config.ts
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/settings/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/settings/package.json
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/settings/postcss.config.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/settings/postcss.config.mjs
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/settings/rspack.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/settings/rspack.config.ts
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/settings/src/RemoteEntry.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/settings/src/RemoteEntry.tsx
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/settings/src/bootstrap.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/settings/src/bootstrap.css
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/settings/src/bootstrap.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/settings/src/bootstrap.tsx
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/settings/src/main.tsx:
--------------------------------------------------------------------------------
1 | import("./bootstrap");
2 |
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/settings/src/react-env.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/settings/src/react-env.d.ts
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/settings/tailwind.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/settings/tailwind.config.ts
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/apps/settings/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/apps/settings/tsconfig.json
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/biome.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/biome.json
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/package.json
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/packages/config-tailwind/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/packages/config-tailwind/package.json
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/packages/config-tailwind/tailwind.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/packages/config-tailwind/tailwind.config.ts
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/packages/config-tailwind/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/packages/config-tailwind/tsconfig.json
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/packages/typescript-config/base.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/packages/typescript-config/base.json
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/packages/typescript-config/mf-tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/packages/typescript-config/mf-tsconfig.json
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/packages/typescript-config/nextjs.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/packages/typescript-config/nextjs.json
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/packages/typescript-config/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/packages/typescript-config/package.json
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/packages/ui/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/packages/ui/package.json
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/packages/ui/src/button.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/packages/ui/src/button.tsx
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/packages/ui/src/card.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/packages/ui/src/card.tsx
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/packages/ui/src/code.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/packages/ui/src/code.tsx
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/packages/ui/src/header.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/packages/ui/src/header.tsx
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/packages/ui/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/packages/ui/tsconfig.json
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/packages/ui/tsconfig.lint.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/packages/ui/tsconfig.lint.json
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/packages/ui/turbo/generators/config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/packages/ui/turbo/generators/config.ts
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/pnpm-workspace.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/pnpm-workspace.yaml
--------------------------------------------------------------------------------
/turborepo/examples/mf-turbo-rspack/turbo.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/turborepo/examples/mf-turbo-rspack/turbo.json
--------------------------------------------------------------------------------
/vanilla/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | dist
3 | .turbo
4 | *.log
5 | pnpm-lock.yaml
6 |
--------------------------------------------------------------------------------
/vanilla/examples/astro/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/astro/.gitignore
--------------------------------------------------------------------------------
/vanilla/examples/astro/.vscode/extensions.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/astro/.vscode/extensions.json
--------------------------------------------------------------------------------
/vanilla/examples/astro/.vscode/launch.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/astro/.vscode/launch.json
--------------------------------------------------------------------------------
/vanilla/examples/astro/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/astro/README.md
--------------------------------------------------------------------------------
/vanilla/examples/astro/astro.config.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/astro/astro.config.mjs
--------------------------------------------------------------------------------
/vanilla/examples/astro/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/astro/package.json
--------------------------------------------------------------------------------
/vanilla/examples/astro/public/favicon.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/astro/public/favicon.svg
--------------------------------------------------------------------------------
/vanilla/examples/astro/public/fonts/atkinson-bold.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/astro/public/fonts/atkinson-bold.woff
--------------------------------------------------------------------------------
/vanilla/examples/astro/public/fonts/atkinson-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/astro/public/fonts/atkinson-regular.woff
--------------------------------------------------------------------------------
/vanilla/examples/astro/src/assets/blog-placeholder-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/astro/src/assets/blog-placeholder-1.jpg
--------------------------------------------------------------------------------
/vanilla/examples/astro/src/assets/blog-placeholder-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/astro/src/assets/blog-placeholder-2.jpg
--------------------------------------------------------------------------------
/vanilla/examples/astro/src/assets/blog-placeholder-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/astro/src/assets/blog-placeholder-3.jpg
--------------------------------------------------------------------------------
/vanilla/examples/astro/src/assets/blog-placeholder-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/astro/src/assets/blog-placeholder-4.jpg
--------------------------------------------------------------------------------
/vanilla/examples/astro/src/assets/blog-placeholder-5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/astro/src/assets/blog-placeholder-5.jpg
--------------------------------------------------------------------------------
/vanilla/examples/astro/src/assets/blog-placeholder-about.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/astro/src/assets/blog-placeholder-about.jpg
--------------------------------------------------------------------------------
/vanilla/examples/astro/src/components/BaseHead.astro:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/astro/src/components/BaseHead.astro
--------------------------------------------------------------------------------
/vanilla/examples/astro/src/components/Footer.astro:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/astro/src/components/Footer.astro
--------------------------------------------------------------------------------
/vanilla/examples/astro/src/components/FormattedDate.astro:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/astro/src/components/FormattedDate.astro
--------------------------------------------------------------------------------
/vanilla/examples/astro/src/components/Header.astro:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/astro/src/components/Header.astro
--------------------------------------------------------------------------------
/vanilla/examples/astro/src/components/HeaderLink.astro:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/astro/src/components/HeaderLink.astro
--------------------------------------------------------------------------------
/vanilla/examples/astro/src/consts.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/astro/src/consts.ts
--------------------------------------------------------------------------------
/vanilla/examples/astro/src/content.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/astro/src/content.config.ts
--------------------------------------------------------------------------------
/vanilla/examples/astro/src/content/blog/first-post.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/astro/src/content/blog/first-post.md
--------------------------------------------------------------------------------
/vanilla/examples/astro/src/content/blog/markdown-style-guide.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/astro/src/content/blog/markdown-style-guide.md
--------------------------------------------------------------------------------
/vanilla/examples/astro/src/content/blog/second-post.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/astro/src/content/blog/second-post.md
--------------------------------------------------------------------------------
/vanilla/examples/astro/src/content/blog/third-post.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/astro/src/content/blog/third-post.md
--------------------------------------------------------------------------------
/vanilla/examples/astro/src/content/blog/using-mdx.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/astro/src/content/blog/using-mdx.mdx
--------------------------------------------------------------------------------
/vanilla/examples/astro/src/layouts/BlogPost.astro:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/astro/src/layouts/BlogPost.astro
--------------------------------------------------------------------------------
/vanilla/examples/astro/src/pages/about.astro:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/astro/src/pages/about.astro
--------------------------------------------------------------------------------
/vanilla/examples/astro/src/pages/blog/[...slug].astro:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/astro/src/pages/blog/[...slug].astro
--------------------------------------------------------------------------------
/vanilla/examples/astro/src/pages/blog/index.astro:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/astro/src/pages/blog/index.astro
--------------------------------------------------------------------------------
/vanilla/examples/astro/src/pages/index.astro:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/astro/src/pages/index.astro
--------------------------------------------------------------------------------
/vanilla/examples/astro/src/pages/rss.xml.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/astro/src/pages/rss.xml.js
--------------------------------------------------------------------------------
/vanilla/examples/astro/src/styles/global.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/astro/src/styles/global.css
--------------------------------------------------------------------------------
/vanilla/examples/astro/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/astro/tsconfig.json
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/.gitignore:
--------------------------------------------------------------------------------
1 | @mf-types
2 |
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/README.md
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/categories/.babelrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/categories/.babelrc
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/categories/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/categories/package.json
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/categories/postcss.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/categories/postcss.config.js
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/categories/public/assets/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/categories/public/assets/favicon.ico
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/categories/public/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/categories/public/index.html
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/categories/src/app.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/categories/src/app.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/categories/src/bootstrap.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/categories/src/bootstrap.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/categories/src/components/Categories.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/categories/src/components/Categories.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/categories/src/components/CategoryBox.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/categories/src/components/CategoryBox.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/categories/src/components/Container.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/categories/src/components/Container.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/categories/src/expose.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/categories/src/expose.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/categories/src/globals.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/categories/src/globals.css
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/categories/src/index.ts:
--------------------------------------------------------------------------------
1 | import('./bootstrap');
2 |
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/categories/tailwind.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/categories/tailwind.config.js
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/categories/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/categories/tsconfig.json
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/categories/webpack.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/categories/webpack.config.js
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/favorites/.babelrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/favorites/.babelrc
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/favorites/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/favorites/package.json
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/favorites/postcss.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/favorites/postcss.config.js
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/favorites/public/assets/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/favorites/public/assets/favicon.ico
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/favorites/public/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/favorites/public/index.html
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/favorites/src/app.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/favorites/src/app.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/favorites/src/bootstrap.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/favorites/src/bootstrap.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/favorites/src/common/actions/saveUser.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/favorites/src/common/actions/saveUser.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/favorites/src/common/hooks/useFavorite.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/favorites/src/common/hooks/useFavorite.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/favorites/src/common/libs/axios.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/favorites/src/common/libs/axios.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/favorites/src/common/libs/fetcher.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/favorites/src/common/libs/fetcher.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/favorites/src/common/types/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/favorites/src/common/types/index.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/favorites/src/components/Button.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/favorites/src/components/Button.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/favorites/src/components/Container.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/favorites/src/components/Container.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/favorites/src/components/Heading.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/favorites/src/components/Heading.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/favorites/src/components/HeartButton.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/favorites/src/components/HeartButton.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/favorites/src/custom.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/favorites/src/custom.d.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/favorites/src/expose.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/favorites/src/expose.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/favorites/src/favorites.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/favorites/src/favorites.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/favorites/src/globals.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/favorites/src/globals.css
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/favorites/src/index.ts:
--------------------------------------------------------------------------------
1 | import('./bootstrap');
2 |
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/favorites/tailwind.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/favorites/tailwind.config.js
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/favorites/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/favorites/tsconfig.json
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/favorites/webpack.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/favorites/webpack.config.js
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/home/.babelrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/home/.babelrc
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/home/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/home/package.json
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/home/postcss.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/home/postcss.config.js
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/home/public/assets/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/home/public/assets/favicon.ico
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/home/public/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/home/public/index.html
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/home/src/app.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/home/src/app.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/home/src/bootstrap.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/home/src/bootstrap.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/home/src/common/actions/deleteListings.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/home/src/common/actions/deleteListings.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/home/src/common/actions/getCurrentUser.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/home/src/common/actions/getCurrentUser.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/home/src/common/actions/getListings.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/home/src/common/actions/getListings.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/home/src/common/actions/mocks/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/home/src/common/actions/mocks/index.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/home/src/common/actions/saveUser.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/home/src/common/actions/saveUser.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/home/src/common/hooks/useCountries.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/home/src/common/hooks/useCountries.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/home/src/common/hooks/useCurrentUser.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/home/src/common/hooks/useCurrentUser.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/home/src/common/hooks/useFavorite.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/home/src/common/hooks/useFavorite.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/home/src/common/hooks/useListings.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/home/src/common/hooks/useListings.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/home/src/common/hooks/useLoginModal.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/home/src/common/hooks/useLoginModal.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/home/src/common/libs/axios.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/home/src/common/libs/axios.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/home/src/common/libs/fetcher.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/home/src/common/libs/fetcher.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/home/src/common/types/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/home/src/common/types/index.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/home/src/components/Button.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/home/src/components/Button.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/home/src/components/Container.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/home/src/components/Container.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/home/src/components/HeartButton.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/home/src/components/HeartButton.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/home/src/custom.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/home/src/custom.d.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/home/src/expose.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/home/src/expose.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/home/src/globals.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/home/src/globals.css
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/home/src/home.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/home/src/home.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/home/src/index.ts:
--------------------------------------------------------------------------------
1 | import('./bootstrap');
2 |
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/home/tailwind.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/home/tailwind.config.js
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/home/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/home/tsconfig.json
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/home/webpack.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/home/webpack.config.js
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/properties/.babelrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/properties/.babelrc
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/properties/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/properties/package.json
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/properties/postcss.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/properties/postcss.config.js
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/properties/public/assets/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/properties/public/assets/favicon.ico
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/properties/public/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/properties/public/index.html
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/properties/src/app.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/properties/src/app.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/properties/src/bootstrap.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/properties/src/bootstrap.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/properties/src/common/actions/saveUser.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/properties/src/common/actions/saveUser.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/properties/src/common/libs/axios.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/properties/src/common/libs/axios.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/properties/src/common/libs/fetcher.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/properties/src/common/libs/fetcher.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/properties/src/common/types/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/properties/src/common/types/index.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/properties/src/components/Button.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/properties/src/components/Button.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/properties/src/components/Container.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/properties/src/components/Container.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/properties/src/components/Heading.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/properties/src/components/Heading.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/properties/src/components/HeartButton.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/properties/src/components/HeartButton.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/properties/src/custom.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/properties/src/custom.d.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/properties/src/expose.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/properties/src/expose.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/properties/src/globals.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/properties/src/globals.css
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/properties/src/index.ts:
--------------------------------------------------------------------------------
1 | import('./bootstrap');
2 |
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/properties/src/properties.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/properties/src/properties.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/properties/tailwind.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/properties/tailwind.config.js
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/properties/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/properties/tsconfig.json
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/properties/webpack.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/properties/webpack.config.js
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/react-host/.babelrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/react-host/.babelrc
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/react-host/federated.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/react-host/federated.d.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/react-host/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/react-host/package.json
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/react-host/postcss.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/react-host/postcss.config.js
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/react-host/public/assets/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/react-host/public/assets/favicon.ico
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/react-host/public/images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/react-host/public/images/logo.png
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/react-host/public/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/react-host/public/index.html
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/react-host/src/_error.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/react-host/src/_error.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/react-host/src/bootstrap.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/react-host/src/bootstrap.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/react-host/src/common/libs/axios.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/react-host/src/common/libs/axios.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/react-host/src/common/libs/fetcher.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/react-host/src/common/libs/fetcher.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/react-host/src/common/types/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/react-host/src/common/types/index.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/react-host/src/components/Avatar.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/react-host/src/components/Avatar.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/react-host/src/components/Button.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/react-host/src/components/Button.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/react-host/src/components/Heading.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/react-host/src/components/Heading.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/react-host/src/components/Loader.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/react-host/src/components/Loader.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/react-host/src/components/Map.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/react-host/src/components/Map.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/react-host/src/custom.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/react-host/src/custom.d.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/react-host/src/globals.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/react-host/src/globals.css
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/react-host/src/index.ts:
--------------------------------------------------------------------------------
1 | import('./bootstrap');
2 |
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/react-host/src/layout.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/react-host/src/layout.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/react-host/src/pages/home/index.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/react-host/src/pages/home/index.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/react-host/src/pages/trips/index.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/react-host/src/pages/trips/index.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/react-host/src/routes.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/react-host/src/routes.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/react-host/tailwind.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/react-host/tailwind.config.js
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/react-host/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/react-host/tsconfig.json
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/react-host/webpack.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/react-host/webpack.config.js
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/reservations/.babelrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/reservations/.babelrc
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/reservations/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/reservations/package.json
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/reservations/postcss.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/reservations/postcss.config.js
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/reservations/public/assets/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/reservations/public/assets/favicon.ico
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/reservations/public/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/reservations/public/index.html
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/reservations/src/app.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/reservations/src/app.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/reservations/src/bootstrap.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/reservations/src/bootstrap.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/reservations/src/common/libs/axios.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/reservations/src/common/libs/axios.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/reservations/src/common/types/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/reservations/src/common/types/index.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/reservations/src/components/Button.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/reservations/src/components/Button.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/reservations/src/custom.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/reservations/src/custom.d.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/reservations/src/expose.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/reservations/src/expose.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/reservations/src/globals.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/reservations/src/globals.css
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/reservations/src/index.ts:
--------------------------------------------------------------------------------
1 | import('./bootstrap');
2 |
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/reservations/src/reservations.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/reservations/src/reservations.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/reservations/tailwind.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/reservations/tailwind.config.js
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/reservations/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/reservations/tsconfig.json
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/reservations/webpack.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/reservations/webpack.config.js
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/trips/.babelrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/trips/.babelrc
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/trips/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/trips/package.json
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/trips/postcss.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/trips/postcss.config.js
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/trips/public/assets/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/trips/public/assets/favicon.ico
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/trips/public/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/trips/public/index.html
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/trips/src/app.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/trips/src/app.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/trips/src/bootstrap.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/trips/src/bootstrap.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/trips/src/common/actions/saveUser.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/trips/src/common/actions/saveUser.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/trips/src/common/hooks/useCountries.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/trips/src/common/hooks/useCountries.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/trips/src/common/hooks/useFavorite.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/trips/src/common/hooks/useFavorite.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/trips/src/common/hooks/useListings.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/trips/src/common/hooks/useListings.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/trips/src/common/libs/axios.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/trips/src/common/libs/axios.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/trips/src/common/libs/fetcher.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/trips/src/common/libs/fetcher.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/trips/src/common/types/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/trips/src/common/types/index.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/trips/src/components/Button.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/trips/src/components/Button.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/trips/src/components/Container.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/trips/src/components/Container.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/trips/src/components/Heading.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/trips/src/components/Heading.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/trips/src/components/HeartButton.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/trips/src/components/HeartButton.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/trips/src/custom.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/trips/src/custom.d.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/trips/src/expose.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/trips/src/expose.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/trips/src/globals.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/trips/src/globals.css
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/trips/src/index.ts:
--------------------------------------------------------------------------------
1 | import('./bootstrap');
2 |
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/trips/src/trips.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/trips/src/trips.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/trips/tailwind.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/trips/tailwind.config.js
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/trips/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/trips/tsconfig.json
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/apps/trips/webpack.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/apps/trips/webpack.config.js
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/package.json
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/pnpm-workspace.yaml:
--------------------------------------------------------------------------------
1 | packages:
2 | - "apps/*"
3 |
--------------------------------------------------------------------------------
/vanilla/examples/mf-airbnb-clone/tsconfig.base.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-airbnb-clone/tsconfig.base.json
--------------------------------------------------------------------------------
/vanilla/examples/mf-react-rsbuild/consumer/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-react-rsbuild/consumer/.gitignore
--------------------------------------------------------------------------------
/vanilla/examples/mf-react-rsbuild/consumer/module-federation.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-react-rsbuild/consumer/module-federation.config.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-react-rsbuild/consumer/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-react-rsbuild/consumer/package.json
--------------------------------------------------------------------------------
/vanilla/examples/mf-react-rsbuild/consumer/rsbuild.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-react-rsbuild/consumer/rsbuild.config.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-react-rsbuild/consumer/src/App.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-react-rsbuild/consumer/src/App.css
--------------------------------------------------------------------------------
/vanilla/examples/mf-react-rsbuild/consumer/src/App.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-react-rsbuild/consumer/src/App.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-react-rsbuild/consumer/src/bootstrap.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-react-rsbuild/consumer/src/bootstrap.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-react-rsbuild/consumer/src/index.ts:
--------------------------------------------------------------------------------
1 | import('./bootstrap');
2 |
--------------------------------------------------------------------------------
/vanilla/examples/mf-react-rsbuild/consumer/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-react-rsbuild/consumer/tsconfig.json
--------------------------------------------------------------------------------
/vanilla/examples/mf-react-rsbuild/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-react-rsbuild/package.json
--------------------------------------------------------------------------------
/vanilla/examples/mf-react-rsbuild/pnpm-workspace.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-react-rsbuild/pnpm-workspace.yaml
--------------------------------------------------------------------------------
/vanilla/examples/mf-react-rsbuild/provider/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-react-rsbuild/provider/.gitignore
--------------------------------------------------------------------------------
/vanilla/examples/mf-react-rsbuild/provider/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-react-rsbuild/provider/package.json
--------------------------------------------------------------------------------
/vanilla/examples/mf-react-rsbuild/provider/rsbuild.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-react-rsbuild/provider/rsbuild.config.ts
--------------------------------------------------------------------------------
/vanilla/examples/mf-react-rsbuild/provider/src/App.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-react-rsbuild/provider/src/App.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-react-rsbuild/provider/src/Button.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-react-rsbuild/provider/src/Button.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-react-rsbuild/provider/src/bootstrap.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-react-rsbuild/provider/src/bootstrap.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-react-rsbuild/provider/src/index.ts:
--------------------------------------------------------------------------------
1 | import('./bootstrap');
2 |
--------------------------------------------------------------------------------
/vanilla/examples/mf-react-rsbuild/provider/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-react-rsbuild/provider/tsconfig.json
--------------------------------------------------------------------------------
/vanilla/examples/mf-react-vite-rspack-webpack/.gitignore:
--------------------------------------------------------------------------------
1 | vite.config.ts.timestamp-*
--------------------------------------------------------------------------------
/vanilla/examples/mf-react-vite-rspack-webpack/host/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-react-vite-rspack-webpack/host/.gitignore
--------------------------------------------------------------------------------
/vanilla/examples/mf-react-vite-rspack-webpack/host/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-react-vite-rspack-webpack/host/README.md
--------------------------------------------------------------------------------
/vanilla/examples/mf-react-vite-rspack-webpack/host/eslint.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-react-vite-rspack-webpack/host/eslint.config.js
--------------------------------------------------------------------------------
/vanilla/examples/mf-react-vite-rspack-webpack/host/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-react-vite-rspack-webpack/host/index.html
--------------------------------------------------------------------------------
/vanilla/examples/mf-react-vite-rspack-webpack/host/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-react-vite-rspack-webpack/host/package.json
--------------------------------------------------------------------------------
/vanilla/examples/mf-react-vite-rspack-webpack/host/public/vite.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-react-vite-rspack-webpack/host/public/vite.svg
--------------------------------------------------------------------------------
/vanilla/examples/mf-react-vite-rspack-webpack/host/src/App.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-react-vite-rspack-webpack/host/src/App.css
--------------------------------------------------------------------------------
/vanilla/examples/mf-react-vite-rspack-webpack/host/src/App.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-react-vite-rspack-webpack/host/src/App.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-react-vite-rspack-webpack/host/src/assets/react.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-react-vite-rspack-webpack/host/src/assets/react.svg
--------------------------------------------------------------------------------
/vanilla/examples/mf-react-vite-rspack-webpack/host/src/bootstrap.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-react-vite-rspack-webpack/host/src/bootstrap.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-react-vite-rspack-webpack/host/src/index.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-react-vite-rspack-webpack/host/src/index.css
--------------------------------------------------------------------------------
/vanilla/examples/mf-react-vite-rspack-webpack/host/src/main.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ZephyrCloudIO/zephyr-examples/HEAD/vanilla/examples/mf-react-vite-rspack-webpack/host/src/main.tsx
--------------------------------------------------------------------------------
/vanilla/examples/mf-react-vite-rspack-webpack/host/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///