govuk-react
govuk-react copied to clipboard
Breadcrumbs error: construct or call signatures
Error when using <Breadcrumbs.Link>
as per document.
JSX element type 'Breadcrumbs.Link' does not have any construct or call signatures.ts(2604)
To Reproduce Use the below code in your VSCode Typescript project
<Breadcrumbs>
<Breadcrumbs.Link href="#">Section</Breadcrumbs.Link>
<Breadcrumbs.Link href="#">Sub-section</Breadcrumbs.Link>
Current page
</Breadcrumbs>
Expected behavior No Linting or Typescript warnings
Screenshots
Desktop (please complete the following information):
- OS: Mac
- Browser N/A
- Version N/A
I see the exact same issue with the SearchBox
component.
You can fix it temporarily by doing
{Breadcrumbs.Link && <Breadcrumbs.Link href="#">..</Breadcrumbs.Link>}