From cfea835979d4d4a8ec494872bbce56ef77a699a6 Mon Sep 17 00:00:00 2001 From: Jan-Willem Spuij Date: Wed, 7 Apr 2021 10:33:02 +0200 Subject: [PATCH] docs --- src/Cortex.Net.Blazor/Cortex.Net.Blazor.xml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/Cortex.Net.Blazor/Cortex.Net.Blazor.xml b/src/Cortex.Net.Blazor/Cortex.Net.Blazor.xml index c39ed69..c7629e7 100644 --- a/src/Cortex.Net.Blazor/Cortex.Net.Blazor.xml +++ b/src/Cortex.Net.Blazor/Cortex.Net.Blazor.xml @@ -4,6 +4,23 @@ Cortex.Net.Blazor + + + Sometimes it is hard to apply Observer to a part of the rendering, + for example because you are rendering inside a RenderFragment, + and you don't want to extract a new component to be able to mark it as observer. + In those cases comes in handy. It takes a child content that + is automatically re-rendered if any referenced observables change. + + + + + Gets or sets the wrapped child content of the component. + + + + + Attribute that indicates that the Blazor component should react on observable state in this component.