10 lines
177 B
Python
10 lines
177 B
Python
from textual.app import App, ComposeResult
|
|
from textual.widgets import Header
|
|
|
|
|
|
class ChoreManagerTui(App):
|
|
|
|
|
|
def compose(self) -> ComposeResult:
|
|
yield Header()
|