14 lines
224 B
Python
14 lines
224 B
Python
from textual.app import App
|
|
from textual.widget import Widget
|
|
|
|
|
|
class WidthApp(App):
|
|
CSS_PATH = "width.tcss"
|
|
|
|
def compose(self):
|
|
yield Widget()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app = WidthApp()
|
|
app.run()
|