()
| 13 | const Content = ({ children }) => <section>{children}</section>; |
| 14 | |
| 15 | const App = () => ( |
| 16 | <div> |
| 17 | <Header>Frame example of wrapping application</Header> |
| 18 | <Content> |
| 19 | <h2>This whole app is wrapped inside an iFrame</h2> |
| 20 | </Content> |
| 21 | </div> |
| 22 | ); |
| 23 | |
| 24 | createRoot(document.querySelector('#example1')).render( |
| 25 | <Frame style={styles}> |
nothing calls this directly
no outgoing calls
no test coverage detected