'use client' // React Imports import type { DetailedHTMLProps, FormHTMLAttributes } from 'react' type Props = DetailedHTMLProps, HTMLFormElement> const FormComponent = (props: Props) => { // Props const { onSubmit, ...rest } = props return
onSubmit(e) : e => e.preventDefault()} /> } export default FormComponent