MCPcopy
hub / github.com/reflex-dev/reflex / extra_overlay_function

Function extra_overlay_function

reflex/app.py:220–229  ·  view source on GitHub ↗

Extra overlay function to add to the overlay component. Returns: The extra overlay function.

()

Source from the content-addressed store, hash-verified

218
219
220def extra_overlay_function() -> Component | None:
221 """Extra overlay function to add to the overlay component.
222
223 Returns:
224 The extra overlay function.
225 """
226 extra_config = get_config().extra_overlay_function
227 if extra_config:
228 return _component_from_import_path(extra_config, "extra_overlay_function")
229 return None
230
231
232def default_overlay_component() -> Component:

Callers 1

AppClass · 0.85

Calls 2

get_configFunction · 0.90

Tested by

no test coverage detected