From 626ac42195486516444ca4b91d4a02842e3ffb9b Mon Sep 17 00:00:00 2001 From: Brian Vaughn Date: Tue, 13 Feb 2018 10:52:00 -0800 Subject: [PATCH] Moved StrictMode to docs rather than blog post --- content/docs/nav.yml | 2 ++ .../{blog/2018-02-07-strict-mode.md => docs/strict-mode.md} | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) rename content/{blog/2018-02-07-strict-mode.md => docs/strict-mode.md} (99%) diff --git a/content/docs/nav.yml b/content/docs/nav.yml index 8bbadf66..cb6fbdb4 100644 --- a/content/docs/nav.yml +++ b/content/docs/nav.yml @@ -74,6 +74,8 @@ title: Accessibility - id: code-splitting title: Code-Splitting + - id: strict-mode + title: StrictMode - title: Reference items: - id: react-api diff --git a/content/blog/2018-02-07-strict-mode.md b/content/docs/strict-mode.md similarity index 99% rename from content/blog/2018-02-07-strict-mode.md rename to content/docs/strict-mode.md index 1ed636e4..88d2950c 100644 --- a/content/blog/2018-02-07-strict-mode.md +++ b/content/docs/strict-mode.md @@ -1,6 +1,7 @@ --- +id: strict-mode title: StrictMode -author: [bvaughn] +permalink: docs/strict-mode.html --- `StrictMode` is a tool for highlighting potential problems in an application. Like `Fragment`, `StrictMode` does not render any visible UI. It activates additional checks and warnings for its descendants.