textual/docs/examples/widgets/label.py
2022-11-17 10:15:35 +00:00

12 lines
241 B
Python

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()