(props)
| 7 | } |
| 8 | |
| 9 | export const Example: ParentComponent<ExampleProps> = (props) => { |
| 10 | return ( |
| 11 | <div class="example"> |
| 12 | <div class="example__header"> |
| 13 | <div class="example__title">{props.title}</div> |
| 14 | <div>[deferStream={String(props.deferStream || false)}]</div> |
| 15 | <div style={{ 'margin-left': '10px' }}> |
| 16 | [simulated sleep: {props.sleep || 0}ms] |
| 17 | </div> |
| 18 | </div> |
| 19 | |
| 20 | {props.children} |
| 21 | </div> |
| 22 | ) |
| 23 | } |
nothing calls this directly
no outgoing calls
no test coverage detected