| 1 | import React, { FC } from 'react'; |
| 2 | |
| 3 | interface AaaProps { |
| 4 | // children: React.ReactNode[] |
| 5 | children: React.ReactNode |
| 6 | } |
| 7 | |
| 8 | const Aaa: FC<AaaProps> = (props) => { |
| 9 | const { children } = props; |
nothing calls this directly
no outgoing calls
no test coverage detected