From 9f36b53f650a837448665000885d4ba44ee86000 Mon Sep 17 00:00:00 2001 From: Andrew Robonen Date: Tue, 17 Jun 2025 17:10:29 +0700 Subject: [PATCH] chore(blog): add docs link for context --- src/widgets/Blog/context.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/widgets/Blog/context.ts b/src/widgets/Blog/context.ts index d5ceba6..48944cb 100644 --- a/src/widgets/Blog/context.ts +++ b/src/widgets/Blog/context.ts @@ -8,6 +8,10 @@ type PostItem = Post & { comments: PostComment[]; }; +/** + * Blog uses injection store pattern + * @see https://deepwiki.com/robonen/lorem-blog/5.1-blog-content-system + */ export const { useProvidingState: useProvidingPosts, useInjectedState: useInjectedPosts,