Files
rio/rio/debug/client_side_debugger/docs_page.py
2024-04-12 14:20:11 +02:00

30 lines
782 B
Python

import rio
class DocsPage(rio.Component):
def build(self) -> rio.Component:
return rio.Column(
rio.Text(
"Documentation",
style="heading2",
margin=1,
justify="left",
),
rio.Column(
rio.Text(
"New here? The Rio tutorial can help you get started.",
wrap=True,
),
rio.Button(
"Read the Tutorial",
icon="material/school",
style="minor",
margin=1,
),
spacing=1,
height="grow",
align_y=0.5,
margin=1,
),
)