This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import wasp | |
| from apps.tabs import TabsApp | |
| class TestApp2(TabsApp): | |
| NAME = "Test2" | |
| def __init__(self): | |
| super().__init__(("p1", "p2", "END")) | |
| def foreground(self): | |
| super().foreground() |