import { Form, FormField, FormButtons, TextField, Button, FormSubmitButton, } from '@umami/react-zen'; import { useApi, useMessages, useModified } from '@/components/hooks'; export function TeamJoinForm({ onSave, onClose }: { onSave: () => void; onClose: () => void }) { const { formatMessage, labels } = useMessages(); const { post, useMutation } = useApi(); const { mutate, error } = useMutation({ mutationFn: (data: any) => post('/teams/join', data) }); const { touch } = useModified(); const handleSubmit = async (data: any) => { mutate(data, { onSuccess: async () => { touch('teams:members'); onSave?.(); onClose?.(); }, }); }; return (
{formatMessage(labels.join)}
); }