remove sandbox script

This commit is contained in:
Will McGugan
2022-06-21 13:08:38 +01:00
parent cc540809d2
commit 9479dfb489

View File

@@ -1,11 +0,0 @@
from textual.app import App, ComposeResult
from textual.scroll_view import ScrollView
class ScrollApp(App):
def compose(self) -> ComposeResult:
yield ScrollView()
app = ScrollApp()
app.run()