Mimic is an under-work React framework which has capabilities to write JSX without using React's render or createComponent
Play with it here on Code Sand Box
The component is created and rendered using Mimic.createElement
and Mimic.render
,
So it does not rely on React for creating and adding elements to DOM, but takes help of JSX ecosystem that react provides.
Mimic uses Fibre tree
to create child and siblings of the element.
It works on concurrent mode which helps in rendering our tree without blocking the main thread, and resumes just after the main thread is idle to compute.
- Mimic.createElement
- Mimic.render
- Reconciliation
- Hooks