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