From edac1430f221de70ca8bf52d555fa208d5286b91 Mon Sep 17 00:00:00 2001
From: Sophie Alpert <git@sophiebits.com>
Date: Mon, 7 Feb 2022 16:23:23 -0800
Subject: [PATCH] [beta] Tweak usestate.md (#4310)

Hopefully people know you can do things other than render it but most of our examples have it in the JSX directly, so it might help to be explicit.
---
 beta/src/pages/apis/usestate.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/beta/src/pages/apis/usestate.md b/beta/src/pages/apis/usestate.md
index bc8b40e9..918867ba 100644
--- a/beta/src/pages/apis/usestate.md
+++ b/beta/src/pages/apis/usestate.md
@@ -121,7 +121,7 @@ To change the state, call the state setter function with the next state value. R
 
 <AnatomyStep title="Render state in the UI">
 
-Use the state in your JSX.
+Use the state in your JSX or component logic.
 
 </AnatomyStep>