()
| 293 | }; |
| 294 | |
| 295 | export const ContainerComponent = () => { |
| 296 | return React.createElement( |
| 297 | "div", |
| 298 | { |
| 299 | id: "container-component", |
| 300 | style: "padding: 5px; margin: 5px; background-color: lightblue;", |
| 301 | }, |
| 302 | React.createElement(LeafComponent, null) |
| 303 | // React.createElement(LeafComponent, null) |
| 304 | ); |
| 305 | }; |
| 306 | |
| 307 | export const DualIncrementer = () => { |
| 308 | const [value, setValue] = React.useState(0); |
nothing calls this directly
no outgoing calls
no test coverage detected