| 3 | import "fmt" |
| 4 | |
| 5 | type componentNode struct { |
| 6 | node viewNode |
| 7 | renderFn func(*Scope) View |
| 8 | scope *Scope |
| 9 | rendered *viewNode |
| 10 | errFallback func(error) View |
| 11 | } |
| 12 | |
| 13 | // renderComponent invokes the component's renderFn. If an ErrorBoundary |
| 14 | // has registered a fallback on this component, panics are recovered and |
nothing calls this directly
no outgoing calls
no test coverage detected