| 3 | import { ReactNode } from 'react'; |
| 4 | |
| 5 | interface ButtonProps { |
| 6 | children: ReactNode; |
| 7 | className?: string; |
| 8 | appName: string; |
| 9 | } |
| 10 | |
| 11 | export const Button = ({ children, className, appName }: ButtonProps) => { |
| 12 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected