(parentContext: any, rootInstance: AppContainer)
| 28 | export abstract class ComponentConfig { |
| 29 | abstract tagName: string; |
| 30 | getContext(parentContext: any, rootInstance: AppContainer) { |
| 31 | return {}; |
| 32 | } |
| 33 | abstract shouldSetTextContent(nextProps: RNProps): boolean; |
| 34 | abstract createInstance( |
| 35 | newProps: RNProps, |