| 1 | import React, { forwardRef } from 'react'; |
| 2 | |
| 3 | interface ModalProps { |
| 4 | children: React.ReactNode; |
| 5 | onClose: () => void; |
| 6 | } |
| 7 | |
| 8 | const Modal = forwardRef<HTMLDialogElement, ModalProps>( |
| 9 | ( |
nothing calls this directly
no outgoing calls
no test coverage detected