( element: ReactElement<ListProps<RowComponentData>> )
| 59 | } |
| 60 | |
| 61 | function encodeList( |
| 62 | element: ReactElement<ListProps<RowComponentData>> |
| 63 | ): EncodedListElement { |
| 64 | return { |
| 65 | props: element.props, |
| 66 | type: "List" |
| 67 | }; |
| 68 | } |
| 69 | |
| 70 | function encodeRowComponent( |
| 71 | element: ReactElement<RowComponentProps<RowComponentData>> |