Merge branch 'main' into placeholder

This commit is contained in:
Rodrigo Girão Serrão
2022-11-18 15:21:40 +00:00
committed by GitHub
58 changed files with 1381 additions and 799 deletions

View File

@@ -0,0 +1,12 @@
from textual.app import App, ComposeResult
from textual.widgets import Label
class LabelApp(App):
def compose(self) -> ComposeResult:
yield Label("Hello, world!")
if __name__ == "__main__":
app = LabelApp()
app.run()