()
| 189 | ); |
| 190 | }; |
| 191 | export const SimpleChild = () => { |
| 192 | return React.createElement("h2", { |
| 193 | innerText: "Im a simple child!!", |
| 194 | }); |
| 195 | }; |
| 196 | export const RandomElement = () => { |
| 197 | const [random] = React.useState(Math.random()); |
| 198 | const ref = React.useRef(0); |
nothing calls this directly
no outgoing calls
no test coverage detected