(element: ReactElement<TextProps>)
| 77 | } |
| 78 | |
| 79 | function encodeTextChild(element: ReactElement<TextProps>): EncodedTextElement { |
| 80 | return { |
| 81 | props: { |
| 82 | children: element.props.children, |
| 83 | className: element.props.className |
| 84 | }, |
| 85 | type: "Text" |
| 86 | }; |
| 87 | } |