()
| 98 | foo = formData.get('foo'); |
| 99 | } |
| 100 | function App() { |
| 101 | return ( |
| 102 | <form action={action} ref={ref}> |
| 103 | <input type="text" name="foo" defaultValue="bar" /> |
| 104 | </form> |
| 105 | ); |
| 106 | } |
| 107 | |
| 108 | const stream = await serverAct(() => |
| 109 | ReactDOMServer.renderToReadableStream(<App />), |
nothing calls this directly
no test coverage detected