Invalid component arguments.
이 컨텐츠는 아직 번역되지 않았습니다.
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} />)}
.