13 lines
263 B
Python
13 lines
263 B
Python
from textual.app import App, ComposeResult
|
|
from textual.widgets import Header, Footer
|
|
|
|
|
|
class ExampleApp(App):
|
|
def compose(self) -> ComposeResult:
|
|
yield Header()
|
|
yield Footer()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app = ExampleApp()
|
|
app.run()
|