From d59c4f9116138e419812e44b0fdb56644c498d3e Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 26 Feb 2018 11:10:09 -0800 Subject: [PATCH] Add temporary link to context RFC slated for 16.3 Fixes #646 --- content/docs/context.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/content/docs/context.md b/content/docs/context.md index bf1d12af..1a648042 100644 --- a/content/docs/context.md +++ b/content/docs/context.md @@ -15,6 +15,10 @@ With React, it's easy to track the flow of data through your React components. W In some cases, you want to pass data through the component tree without having to pass the props down manually at every level. You can do this directly in React with the powerful "context" API. +> Note: +> +> A [new, safe version of context](https://github.com/reactjs/rfcs/blob/master/text/0002-new-version-of-context.md) is under development for the upcoming 16.3 release. + ## Why Not To Use Context