From f0ab9fc57519bd8cde1de8e3625c87453f9a2b56 Mon Sep 17 00:00:00 2001 From: rythazhur Date: Tue, 31 Mar 2026 17:52:21 +0000 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ff2ff8e..c8b7cc4 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ def current_user(request) -> UserShape: return UserShape.query(lambda qs: qs.filter(pk=request.user.pk))[0] ``` -Djarea generates the entire React client: all your type interfaces, function call hooks, automatic JWT, and a simple to make it all work. No API routing, no serializers, no REST/CRUD bullshit. +Djarea generates the entire React client: all your type interfaces, function call hooks, automatic JWT, and a simple `` to make it all work. No API routing, no serializers, no REST/CRUD bullshit. ```tsx const user: UserShape = useCurrentUser() // typed, cached, SSR-hydrated