(props)
| 5 | } |
| 6 | |
| 7 | const Aaa: FC<AaaProps> = (props) => { |
| 8 | const { children } = props; |
| 9 | |
| 10 | return <div className='container'> |
| 11 | { |
| 12 | React.Children.map(children, (item) => { |
| 13 | return <div className='item'>{item}</div> |
| 14 | }) |
| 15 | } |
| 16 | </div> |
| 17 | } |
| 18 | |
| 19 | function App() { |
| 20 | return <Aaa> |
nothing calls this directly
no outgoing calls
no test coverage detected