(*children, **props)
| 1277 | |
| 1278 | @wraps(component_fn) |
| 1279 | def wrapper(*children, **props) -> CustomComponent: |
| 1280 | # Remove the children from the props. |
| 1281 | props.pop("children", None) |
| 1282 | return CustomComponent(component_fn=component_fn, children=children, **props) |
| 1283 | |
| 1284 | return wrapper |
| 1285 |
nothing calls this directly
no test coverage detected