I have installed the requirements indecated here.
After that copied the entired Default navbar code in App.jsx file, the problem raised is
`Uncaught ReferenceError: React is not defined`.
`$$typeof: Symbol(react.forward_ref)`
- what is
react.forward_ref
?. Internet only shows something likeReact.forwardRef.
- How can resolve the problem?
Default navbar code
<Navbar
fluid={true}
rounded={true}
>
<Navbar.Brand
as={{
$$typeof: Symbol(react.forward_ref),
render: LinkWithRef
}}
to="/navbars"
>
<img
src="https://flowbite.com/docs/images/logo.svg"
className="mr-3 h-6 sm:h-9"
alt="Flowbite Logo"
/>
<span className="self-center whitespace-nowrap text-xl font-semibold dark:text-white">
Flowbite
</span>
</Navbar.Brand>
<Navbar.Toggle />
<Navbar.Collapse>
<Navbar.Link
href="/navbars"
active={true}
>
Home
</Navbar.Link>
<Navbar.Link
as={{
$$typeof: Symbol(react.forward_ref),
render: LinkWithRef
}}
to="/navbars"
>
About
</Navbar.Link>
<Navbar.Link href="/navbars">
Services
</Navbar.Link>
<Navbar.Link href="/navbars">
Pricing
</Navbar.Link>
<Navbar.Link href="/navbars">
Contact
</Navbar.Link>
</Navbar.Collapse>
</Navbar>