mirror of
https://github.com/rio-labs/rio.git
synced 2026-02-09 07:09:00 -06:00
30 lines
782 B
Python
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,
|
|
),
|
|
)
|