(node: ReactNode)
| 12 | // Wrap all CC render calls with ThemeProvider so ThemedBox/ThemedText work |
| 13 | // without every call site having to mount it. Ink itself is theme-agnostic. |
| 14 | function withTheme(node: ReactNode): ReactNode { |
| 15 | return createElement(ThemeProvider, null, node) |
| 16 | } |
| 17 | |
| 18 | export async function render( |
| 19 | node: ReactNode, |
no outgoing calls
no test coverage detected