({ name })
| 88 | const loaders = {}; |
| 89 | |
| 90 | function Field({ name }) { |
| 91 | const id = useId(); |
| 92 | return <span id={id}>{name}</span>; |
| 93 | } |
| 94 | |
| 95 | const createLazy = name => |
| 96 | lazy( |
nothing calls this directly
no test coverage detected
searching dependent graphs…