()
| 72 | props: RendererProps |
| 73 | |
| 74 | render() { |
| 75 | const { json, tree, ...params } = this.props |
| 76 | let obj |
| 77 | if (tree) obj = tree |
| 78 | else if (json) obj = JSON.parse(json) // flowlint-line sketchy-null-string:off |
| 79 | |
| 80 | return obj ? renderFromObject(obj, params) : null |
| 81 | } |
| 82 | } |
nothing calls this directly
no test coverage detected