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

13 lines
279 B
Python
Raw Permalink Normal View History

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()