Files
textual/docs/examples/introduction/intro01.py
Will McGugan 6bfc26c1ec more docs
2022-05-25 15:36:58 +01:00

10 lines
93 B
Python

from textual.app import App
class ExampleApp(App):
pass
app = ExampleApp()
app.run()