Created
March 9, 2025 20:16
-
-
Save evnchn/c1eb27c001dd9fffe08419d04e73c8a6 to your computer and use it in GitHub Desktop.
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
| from nicegui.element import Element | |
| class MyRowSoftload(Element, component='my_row_softload.js'): | |
| def __init__(self, *, day_texts=[], day_checked=[]) -> None: | |
| super().__init__() | |
| self._props["day_texts"] = day_texts | |
| self._props["day_checked"] = day_checked |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment