i have this problem in the react boilerplate template.
typsecript error
'Helmet' cannot be used as a JSX component.
Its instance type 'Helmet' is not a valid JSX element. TS2786
7 | return (
8 | <>
> 9 | <Helmet>
| ^
10 | <title>404 Page Not Found</title>
11 | <meta name="description" content="Page not found" />
12 | </Helmet>
imported as
import { Helmet } from 'react-helmet-async';
investigating the "" shows this error
HelmetProvider' cannot be used as a JSX component. Its instance type 'HelmetProvider' is not a valid JSX element. Type 'HelmetProvider' is missing the following properties from type 'ElementClass': render, context, setState, forceUpdate, and 3 more.ts(2
`import { HelmetProvider } from 'react-helmet-async';
why is this not working?