Spaces:
Sleeping
Sleeping
Update testnavbar.py
Browse files- testnavbar.py +5 -3
testnavbar.py
CHANGED
|
@@ -4,10 +4,12 @@ hdrs = Theme.blue.headers(mode='light')
|
|
| 4 |
app, rt = fast_app(hdrs=hdrs, live=True)
|
| 5 |
@rt
|
| 6 |
def index():
|
| 7 |
-
return Title('Hello World'), Container(
|
| 8 |
-
H3(A('
|
| 9 |
P('I love monsterui!'),
|
| 10 |
-
|
|
|
|
|
|
|
| 11 |
Card('A Fancy Card :)')
|
| 12 |
)
|
| 13 |
|
|
|
|
| 4 |
app, rt = fast_app(hdrs=hdrs, live=True)
|
| 5 |
@rt
|
| 6 |
def index():
|
| 7 |
+
return Title('Hello World Title'), Container(
|
| 8 |
+
H3(A('H3 with Primary URL', href='', cls=AT.primary)),
|
| 9 |
P('I love monsterui!'),
|
| 10 |
+
P('I love monsterui!'),
|
| 11 |
+
P('I love monsterui!'),
|
| 12 |
+
A('Go to Google does not work', href='https://www.google.com', cls=AT.classic),
|
| 13 |
Card('A Fancy Card :)')
|
| 14 |
)
|
| 15 |
|