mirror of
https://github.com/sstent/AICyclingCoach.git
synced 2025-12-05 23:52:06 +00:00
12 lines
286 B
Python
12 lines
286 B
Python
from textual.app import App, ComposeResult
|
|
from textual.widgets import Header, Footer, Static
|
|
class BasicApp(App):
|
|
def compose(self) -> ComposeResult:
|
|
yield Header()
|
|
yield Static("Hello, Textual!")
|
|
yield Footer()
|
|
|
|
if __name__ == "__main__":
|
|
app = BasicApp()
|
|
app.run()
|