1
0
Fork 0
textual-fastdatatable/tests/snapshot_tests/snapshot_apps/empty.py

13 lines
236 B
Python
Raw Normal View History

from textual.app import App, ComposeResult
from textual_fastdatatable import DataTable
class TableApp(App):
def compose(self) -> ComposeResult:
yield DataTable()
app = TableApp()
if __name__ == "__main__":
app.run()