--- import Form, { FormGroup } from "@astro-reactive/form"; import { Validators } from "@astro-reactive/validator"; export interface Props { url: string; } const { url } = Astro.props; const form = new FormGroup([ { name: "url", value: url, placeholder: "Type a URL here", validators: [Validators.required, Validators.minLength(11)], }, ]); ---