File size: 128 Bytes
1334c63
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
from fasthtml.common import *

app,rt = fast_app()

@rt('/')
def get(): return Div(P('Hello World!'), hx_get="/change")

serve()