|
|
|
|
|
by acemarke
374 days ago
|
|
React's actual implementation is in the reconciler logic, which is then built into the platform-specific packages like ReactDOM and React Native. So, the `react` core package is tiny because it just has a few small common methods and shims for the hooks, and all of the actual logic and bundle size are in `react-dom`. |
|