c.py 211 B

1234567891011
  1. import theme
  2. from nicegui import APIRouter, ui
  3. router = APIRouter()
  4. @router.page('/c')
  5. def example_page():
  6. with theme.frame('- Example C -'):
  7. ui.label('Example C').classes('text-h4 text-grey-8')