Skip to content

Latest commit

 

History

History
46 lines (36 loc) · 1.15 KB

README.md

File metadata and controls

46 lines (36 loc) · 1.15 KB

micro-app

NPM version Downloads Minified size Gzip size

English | 中文

simplestflexible and componentized micro frontend solutions

Setup

pnpm i @micro-web/app

Usage

<MicroApp
  className="micro-app"
  entry="//localhost:3002/src/main.tsx"
  fallback={<Spinner />}
  forwardProps={{ history }}
/>

or

<MicroApp
  className="micro-app"
  entry="()=>import('your-sub-app')"
  fallback={<Spinner />}
  forwardProps={{ history }}
/>