From 4b89e838618fd79ec5b55e8850a43a813b316250 Mon Sep 17 00:00:00 2001 From: Lee Sanghyeon Date: Sat, 29 Oct 2016 21:01:41 +0900 Subject: [PATCH] Update codebase-overview.md (#8142) * Update codebase-overview.md Fix the broken source code URL in 'Event System' section. * Update codebase-overview.md Re-fix link name --- contributing/codebase-overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contributing/codebase-overview.md b/contributing/codebase-overview.md index 51bcf537..54845ef0 100644 --- a/contributing/codebase-overview.md +++ b/contributing/codebase-overview.md @@ -397,7 +397,7 @@ Its source code is located in [`src/renderers/shared/fiber`](https://github.com/ ### Event System -React implements a synthetic event system which is agnostic of the renderers and works both with React DOM and React Native. Its source code is located in [`src/renderers/shared/stack/event`](https://github.com/facebook/react/tree/master/src/renderers/shared/stack/event). +React implements a synthetic event system which is agnostic of the renderers and works both with React DOM and React Native. Its source code is located in [`src/renderers/shared/shared/event`](https://github.com/facebook/react/tree/master/src/renderers/shared/shared/event). There is a [video with a deep code dive into it](https://www.youtube.com/watch?v=dRo_egw7tBc) (66 mins).