Render the component. Returns: The code to render the component.
(self)
| 1255 | |
| 1256 | @lru_cache(maxsize=None) # noqa |
| 1257 | def get_component(self) -> Component: |
| 1258 | """Render the component. |
| 1259 | |
| 1260 | Returns: |
| 1261 | The code to render the component. |
| 1262 | """ |
| 1263 | return self.component_fn(*self.get_prop_vars()) |
| 1264 | |
| 1265 | |
| 1266 | def custom_component( |