import { useRef } from '@wordpress/element' import { __ } from '@wordpress/i18n' import { useGlobalStore } from '../../state/GlobalState' import LoginInterface from '../LoginInterface' import { Modal } from './Modal' export default function SettingsModal() { const initialFocus = useRef(null) const actionCallback = useGlobalStore((state) => state.removeAllModals) return (
) }