()
| 6406 | |
| 6407 | const childRef = React.createRef(null); |
| 6408 | function Form() { |
| 6409 | const [state] = useActionState(action, 0); |
| 6410 | const text = `Child: ${state}`; |
| 6411 | return ( |
| 6412 | <div id="child" ref={childRef}> |
| 6413 | {text} |
| 6414 | </div> |
| 6415 | ); |
| 6416 | } |
| 6417 | |
| 6418 | function App() { |
| 6419 | return ( |
nothing calls this directly
no test coverage detected