Files
LivingAgents/pages/scene_control.py
2025-09-01 06:43:11 +02:00

13 lines
235 B
Python

from nicegui import ui
from components import AsyncElement
from living_agents import Character
class SceneControl(AsyncElement):
async def build(self) -> None:
self.classes('w-full')
with self:
pass