fasthtml / app.py
thomasht86
min
8a02447
from fasthtml.common import *
app,rt = fast_app()
@rt('/')
def get(): return Div(P('Hello World!'), hx_get="/change")
serve(port=7860)