28 lines
652 B
Python
28 lines
652 B
Python
from __future__ import annotations
|
|
|
|
from dataclasses import KW_ONLY, field
|
|
from typing import * # type: ignore
|
|
|
|
import rio
|
|
|
|
from .. import components as comps
|
|
|
|
class SamplePage(rio.Component):
|
|
"""
|
|
This is an example Page. Pages are identical to other Components and only
|
|
differ in how they're used.
|
|
"""
|
|
|
|
def build(self) -> rio.Component:
|
|
return rio.Column(
|
|
rio.Text("My App", style="heading2"),
|
|
rio.Text(
|
|
"This is a sample page. Replace it with your own content."
|
|
),
|
|
spacing=2,
|
|
margin=2,
|
|
align_x=0.5,
|
|
align_y=0,
|
|
)
|
|
|