Get the initial props to set for the component. Returns: The initial props to set.
(cls)
| 519 | @classmethod |
| 520 | @lru_cache(maxsize=None) |
| 521 | def get_initial_props(cls) -> Set[str]: |
| 522 | """Get the initial props to set for the component. |
| 523 | |
| 524 | Returns: |
| 525 | The initial props to set. |
| 526 | """ |
| 527 | return set() |
| 528 | |
| 529 | @classmethod |
| 530 | @lru_cache(maxsize=None) |