Spaces:
Sleeping
Sleeping
File size: 403 Bytes
d467ea7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
from fasthtml.common import *
from monsterui.all import *
hdrs = Theme.blue.headers(mode='light')
app, rt = fast_app(hdrs=hdrs, live=True)
@rt
def index():
return Title('Hello World'), Container(
H2(A('Pretty URL', href='', cls=AT.primary)),
P('I love monsterui!'),
A('Go to Google', href='https://google.com', cls=AT.classic),
Card('A Fancy Card :)')
)
serve() |