(meta: ReactComponentInternalMetadata)
| 16 | } from "./types"; |
| 17 | |
| 18 | const getComponentProps = (meta: ReactComponentInternalMetadata) => { |
| 19 | if (meta.kind === "empty-slot") { |
| 20 | return null; |
| 21 | } |
| 22 | return meta.props; |
| 23 | }; |
| 24 | |
| 25 | const updateElement = ({ |
| 26 | props, |
nothing calls this directly
no outgoing calls
no test coverage detected