You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to make several different common layouts. Here's a simple minimal column one...
2 or more columns
Grids
Dashboard style
flex flayouts
from fasthtml.common import *
app, rt = fast_app()
@app.get('/')
def index():
return Div(cls='grid')(
Div(
H1("Column 1"),
P('Here is my first column'),
Button('Broken Button')),
Div(P('Here is my second column')),
Div(P('Here is my third column')))
serve()
The text was updated successfully, but these errors were encountered:
I want to make several different common layouts. Here's a simple minimal column one...
The text was updated successfully, but these errors were encountered: