()
| 377 | }); |
| 378 | |
| 379 | function Document() { |
| 380 | const doc = useStoreValue(documentStore); |
| 381 | return ( |
| 382 | <div> |
| 383 | <span data-testid="title">{doc.title}</span> |
| 384 | <span data-testid="tags">{doc.meta.tags.join(", ")}</span> |
| 385 | </div> |
| 386 | ); |
| 387 | } |
| 388 | |
| 389 | render(<Document />); |
| 390 |
nothing calls this directly
no test coverage detected