MCPcopy
hub / github.com/fspecii/ace-step-ui / UsernameModalProps

Interface UsernameModalProps

components/UsernameModal.tsx:5–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3import { useI18n } from '../context/I18nContext';
4
5interface UsernameModalProps {
6 isOpen: boolean;
7 onSubmit: (username: string) => Promise<void>;
8}
9
10export const UsernameModal: React.FC<UsernameModalProps> = ({ isOpen, onSubmit }) => {
11 const { t } = useI18n();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected