(styles = [], children)
| 14 | } |
| 15 | |
| 16 | function styledComplexNode(styles = [], children) { |
| 17 | return { |
| 18 | 'type': 'styledComplexNode', |
| 19 | 'styles': styles, |
| 20 | 'children': children |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | function textNode(text) { |
| 25 | return { |
no outgoing calls
no test coverage detected