Files
textual/docs/examples/app/simple02.py
2022-09-04 20:40:12 +01:00

11 lines
114 B
Python

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