(
element:
| React.FunctionComponentElement<any>
| React.ComponentElement<any, any>,
action?: Action
)
| 427 | |
| 428 | /** Render the reaction components */ |
| 429 | export async function render( |
| 430 | element: |
| 431 | | React.FunctionComponentElement<any> |
| 432 | | React.ComponentElement<any, any>, |
| 433 | action?: Action |
| 434 | ) { |
| 435 | const [blocks, promises] = reconcile(element, action); |
| 436 | |
| 437 | await Promise.all(promises); |
| 438 | |
| 439 | return blocks; |
| 440 | } |
| 441 | |
| 442 | /** Search filter options */ |
| 443 | export async function getOnSearchOptions( |
no test coverage detected