Invalid component arguments.
Dieser Inhalt ist noch nicht in deiner Sprache verfügbar.
Example error messages:
InvalidComponentArgs: Invalid arguments passed to<MyAstroComponent>
component.
What went wrong?
Section titled What went wrong?Astro components cannot be rendered manually via a function call, such as Component()
or {items.map(Component)}
. Prefer the component syntax <Component />
or {items.map(item => <Component {...item} />)}
.