()
| 285 | }; |
| 286 | |
| 287 | export const LeafComponent = () => { |
| 288 | return React.createElement("div", { |
| 289 | id: "leaf-component", |
| 290 | style: "padding: 5px; margin: 5px; background-color: lightgray;", |
| 291 | innerText: "Leaf Component Content", |
| 292 | }); |
| 293 | }; |
| 294 | |
| 295 | export const ContainerComponent = () => { |
| 296 | return React.createElement( |
nothing calls this directly
no outgoing calls
no test coverage detected