(props: { children: React.ReactNode })
| 1 | import { Button } from './button' |
| 2 | |
| 3 | export const ButtonWithProps = (props: { children: React.ReactNode }) => { |
| 4 | return <Button {...props} /> |
| 5 | } |
nothing calls this directly
no outgoing calls
no test coverage detected