({ children, className }: ButtonProps)
| 8 | } |
| 9 | |
| 10 | export const Button = ({ children, className }: ButtonProps) => { |
| 11 | return ( |
| 12 | <button className={className}> |
| 13 | {children} |
| 14 | </button> |
| 15 | ); |
| 16 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected