| 7 | import Icon from "./Icon"; |
| 8 | |
| 9 | interface Props { |
| 10 | onClose: () => void; |
| 11 | } |
| 12 | |
| 13 | const EditUserinfoDialog: React.FC<Props> = (props: Props) => { |
| 14 | const { onClose } = props; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…