Files
BerryV2/src/main.py

15 lines
325 B
Python
Raw Normal View History

2026-07-23 14:53:57 +10:00
from textual.app import App, ComposeResult
from textual.widgets import Footer
from widgets.text_editor import TextEditor
class Berry(App):
def compose(self) -> ComposeResult:
yield TextEditor(language="python")
yield Footer()
if __name__ == "__main__":
app = Berry()
app.run()