import { Button } from '@components/common/ui/Button.js'; import React from 'react'; import { useFormContext } from 'react-hook-form'; const FormButtons: React.FC<{ formId: string; cancelUrl: string; }> = ({ cancelUrl, formId }) => { const { formState: { isSubmitting } } = useFormContext(); return (
); }; export { FormButtons };