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