import solara
import solara.lab
@solara.component
def Page():
with solara.AppBar():
with solara.lab.Tabs():
with solara.lab.Tab('Home'):
solara.Text('Some content')
with solara.lab.Tabs():
with solara.lab.Tab('Example-1'):
solara.Text('Example-1-content')
with solara.lab.Tab('Example-2'):
solara.Text('Example-2-content')
with solara.lab.Tab('About'):
solara.Text('About')
with solara.lab.Tab('Contact'):
solara.Text('Contact')
@solara.component
def Layout(children=[]):
solara.AppLayout(color="", children=children)