From 76dae993482c00abe07939aef42e8022e556539b Mon Sep 17 00:00:00 2001 From: Max Wizard K Date: Fri, 30 Nov 2018 17:10:13 +0200 Subject: [PATCH] Referenced a Fiber architecture explanation (#1448) Added a link to an article that provides an in-depth explanation of Fiber architecture. --- content/docs/codebase-overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/codebase-overview.md b/content/docs/codebase-overview.md index 68de02cd..07b07aa7 100644 --- a/content/docs/codebase-overview.md +++ b/content/docs/codebase-overview.md @@ -211,7 +211,7 @@ Its main goals are: * Ability to return multiple elements from `render()`. * Better support for error boundaries. -You can read more about it in [React Fiber Architecture](https://github.com/acdlite/react-fiber-architecture). While it has shipped with React 16, the async features are not enabled by default yet. +You can read more about React Fiber Architecture [here](https://github.com/acdlite/react-fiber-architecture) and [here](https://blog.ag-grid.com/index.php/2018/11/29/inside-fiber-in-depth-overview-of-the-new-reconciliation-algorithm-in-react). While it has shipped with React 16, the async features are not enabled by default yet. Its source code is located in [`packages/react-reconciler`](https://github.com/facebook/react/tree/master/packages/react-reconciler).