({ onClick, children })
| 6 | import React from 'react'; |
| 7 | |
| 8 | const Button = ({ onClick, children }) => { |
| 9 | return ( |
| 10 | <button onClick={onClick}> |
| 11 | {children} |
| 12 | </button> |
| 13 | ); |
| 14 | }; |
| 15 | |
| 16 | export default Button; |
nothing calls this directly
no outgoing calls
no test coverage detected