11 lines
271 B
Python
11 lines
271 B
Python
from textual.screen import Screen
|
|
from textual.app import ComposeResult
|
|
from widgets import Navbar
|
|
|
|
|
|
class RepoViewScreen(Screen):
|
|
def __init__(self, repo_id: int):
|
|
super().__init__(self)
|
|
|
|
def compose(self) -> ComposeResult:
|
|
yield Navbar() |