From 5cd0223670c0d4eca1ab7b37b04935c19e855011 Mon Sep 17 00:00:00 2001 From: rythazhur Date: Tue, 31 Mar 2026 17:53:06 +0000 Subject: [PATCH] Update README.md --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c8b7cc4..f48f93e 100644 --- a/README.md +++ b/README.md @@ -4,13 +4,16 @@ A modern Django + React Framework for perfectionists with deadlines. Write a Pydantic function, add the @client decorator, use configurable **Shape** types for your models. +Djarea generates the entire React client: all your type interfaces, function call hooks, autoatic JWT, and a simple `` to make it all work. + +No API routing, no serializers, no REST/CRUD bullshit. + ```python @client 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. ```tsx const user: UserShape = useCurrentUser() // typed, cached, SSR-hydrated