13 lines
235 B
Python
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
|