| 8 | import { useTranslation } from "react-i18next"; |
| 9 | |
| 10 | interface Props { |
| 11 | close: () => void; |
| 12 | } |
| 13 | |
| 14 | const SchemaDrawer = (props: Props) => { |
| 15 | const { t } = useTranslation(); |
nothing calls this directly
no outgoing calls
no test coverage detected