From 44af8b0d8261b81eb5a309ee7f2294c79a1eb92b Mon Sep 17 00:00:00 2001 From: Santosh Venkatraman Date: Wed, 22 Oct 2025 10:41:28 +0530 Subject: [PATCH] fix: broken/dead custom renderer links in react-reconciler README.md The links for building custom renderers in the README.md file are broken/dead. This commit replaces them with the Wayback machine snapshot links. --- packages/react-reconciler/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/react-reconciler/README.md b/packages/react-reconciler/README.md index b30387c591f16..198f78526e2d6 100644 --- a/packages/react-reconciler/README.md +++ b/packages/react-reconciler/README.md @@ -48,8 +48,8 @@ const HostConfig = { **For an introduction to writing a very simple custom renderer, check out this article series:** -* **[Building a simple custom renderer to DOM](https://medium.com/@agent_hunt/hello-world-custom-react-renderer-9a95b7cd04bc)** -* **[Building a simple custom renderer to native](https://medium.com/@agent_hunt/introduction-to-react-native-renderers-aka-react-native-is-the-java-and-react-native-renderers-are-828a0022f433)** +* **[Building a simple custom renderer to DOM](https://web.archive.org/web/20181102142241/https://medium.com/@agent_hunt/hello-world-custom-react-renderer-9a95b7cd04bc?source=user_profile---------6------------------)** +* **[Building a simple custom renderer to native](https://web.archive.org/web/20181102142215/https://medium.com/@agent_hunt/introduction-to-react-native-renderers-aka-react-native-is-the-java-and-react-native-renderers-are-828a0022f433?source=user_profile---------5------------------)** The full list of supported methods [can be found here](https://github.com/facebook/react/blob/main/packages/react-reconciler/src/forks/ReactFiberConfig.custom.js). For their signatures, we recommend looking at specific examples below.