UNPKG

@astro-utils/forms

Version:

Server component for Astro (call server functions from client side with validation and state management)

8 lines (7 loc) 290 B
import { AstroFormsError } from "./AstroFormsError.js"; export class MissingNamePropError extends AstroFormsError { constructor(componentName) { super(`Name prop is required for form components, missing in ${componentName}`); this.componentName = componentName; } }