starting work on UI

This commit is contained in:
2026-01-13 16:06:57 +11:00
parent 96d9fe94bf
commit 0beb40d701
5 changed files with 142 additions and 0 deletions

12
src/ui/app.py Normal file
View File

@@ -0,0 +1,12 @@
from textual.app import App, ComposeResult
from textual.widgets import Footer
from ui.widgets.sidebar import Sidebar
from ui.widgets.timeline import Timeline
class AppUI(App):
def compose(self) -> ComposeResult:
yield Sidebar()
yield Timeline()
yield Footer()