#Component cannot be used as JSX in Next13
2 messages · Page 1 of 1 (latest)
Thats fine, the react types havent been updated yet to support async components. I would just use @ts-expect-error
<>
{ /* @ts-expect-error react types */ }
<AsyncComponent />
<>