From 5e19fbaa0c5b627b56ce71ba9031ea8707c41265 Mon Sep 17 00:00:00 2001 From: Masen Furer Date: Fri, 12 Dec 2025 16:15:45 -0800 Subject: [PATCH] Update link to ComponentState docs --- reflex/state.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reflex/state.py b/reflex/state.py index 4c9b9136ec2..41b04e1a139 100644 --- a/reflex/state.py +++ b/reflex/state.py @@ -2624,7 +2624,7 @@ class ComponentState(State, mixin=True): Subclass this class and define vars and event handlers in the traditional way. Then define a `get_component` method that returns the UI for the component instance. - See the full [docs](https://reflex.dev/docs/substates/component-state/) for more. + See the full [docs](https://reflex.dev/docs/state-structure/component-state/) for more. Basic example: ```python