()
| 332 | ...markerAttributes, |
| 333 | } |
| 334 | const fallback = () => { |
| 335 | if (!shouldPreserveServerHTML) return props.fallback ?? null |
| 336 | |
| 337 | const html = getFallbackHtml(id) |
| 338 | if (!html) return null |
| 339 | |
| 340 | const fallbackProps: HydrationFallbackDynamicProps = { |
| 341 | component: 'div', |
| 342 | style: { display: 'contents' }, |
| 343 | innerHTML: html, |
| 344 | } |
| 345 | |
| 346 | return <Dynamic {...fallbackProps} /> |
| 347 | } |
| 348 | |
| 349 | return ( |
| 350 | <Dynamic {...markerProps}> |
no test coverage detected