textual/docs/examples/guide/dom1.py
2022-09-18 22:02:08 +01:00

10 lines
128 B
Python

from textual.app import App
class ExampleApp(App):
pass
if __name__ == "__main__":
app = ExampleApp()
app.run()