interface PathFormProps { ref: React.RefObject; onBlur: () => void; defaultValue: string; } export function PathForm({ ref, onBlur, defaultValue }: PathFormProps) { return (
e.preventDefault()} className="flex-1">
); }