(stringified: string)
| 15 | let key = 0; |
| 16 | |
| 17 | export function decode(stringified: string) { |
| 18 | const json = JSON.parse(stringified) as EncodedElement[]; |
| 19 | |
| 20 | return decodeChildren(json); |
| 21 | } |
| 22 | |
| 23 | function decodeChildren(children: EncodedElement[]): ReactElement<unknown>[] { |
| 24 | const elements: ReactElement<unknown>[] = []; |
no test coverage detected