Thomas Brandého

Results 151 comments of Thomas Brandého

It work if you use APIRouter from FastAPI ```python import reflex as rx from fastapi import APIRouter app = rx.App() admin_api = APIRouter() admin_api.add_api_route("/foo", lambda: {"foo": "bar"}, methods=["GET"]) # Include...