Spaces:
Sleeping
Sleeping
Update testnavbar.py
Browse files- testnavbar.py +2 -2
testnavbar.py
CHANGED
|
@@ -5,11 +5,11 @@ 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 |
|
|
|
|
| 5 |
@rt
|
| 6 |
def index():
|
| 7 |
return Title('Hello World Title'), Container(
|
| 8 |
+
H3(A('H3 with Primary URL, a link does not work', href='', cls=AT.primary)),
|
| 9 |
P('I love monsterui!'),
|
| 10 |
P('I love monsterui!'),
|
| 11 |
P('I love monsterui!'),
|
| 12 |
+
A('Go to Google, a link does not work', href='https://www.google.com', cls=AT.classic),
|
| 13 |
Card('A Fancy Card :)')
|
| 14 |
)
|
| 15 |
|