1
0
Fork 0
textual-fastdatatable/tests/snapshot_tests/snapshot_apps/no_rows.py
Daniel Baumann 148efc9122
Adding upstream version 0.12.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-24 10:57:24 +01:00

12 lines
279 B
Python

from textual.app import App, ComposeResult
from textual_fastdatatable import DataTable
class TableApp(App):
def compose(self) -> ComposeResult:
yield DataTable(column_labels=["foo [red]foo[/red]", "bar"])
app = TableApp()
if __name__ == "__main__":
app.run()