12 lines
294 B
Python
12 lines
294 B
Python
|
|
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()
|