import { useMessages, useUpdateQuery } from '@/components/hooks'; import { Button, Form, FormButtons, FormField, FormSubmitButton, TextField, } from '@umami/react-zen'; export function TeamAddForm({ onSave, onClose }: { onSave: () => void; onClose: () => void }) { const { formatMessage, labels, getErrorMessage } = useMessages(); const { mutateAsync, error, isPending } = useUpdateQuery('/teams'); const handleSubmit = async (data: any) => { await mutateAsync(data, { onSuccess: async () => { onSave?.(); onClose?.(); }, }); }; return (
); }