Skip to content

Commit

Permalink
fix(Breadcrums): support react <18 types (#1722)
Browse files Browse the repository at this point in the history
  • Loading branch information
ValeraS authored Jul 27, 2024
1 parent 2b04b18 commit 5229e99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/lab/Breadcrumbs/Breadcrumbs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export interface BreadcrumbsItemProps {
routerOptions?: RouterOptions;
}

function Item(_props: BreadcrumbsItemProps): React.ReactNode {
function Item(_props: BreadcrumbsItemProps): React.ReactElement | null {
return null;
}

Expand Down

0 comments on commit 5229e99

Please sign in to comment.