# component_registry.py COMPONENTS = {} def register_component(name, css=None): def decorator(func): COMPONENTS[name] = { "render": func, "css": css } return func return decorator