Skip to content

Commit 6a53861

Browse files
authoredNov 7, 2022
chore(gatsby-link): Correct type export (#36968)
1 parent 0ad6314 commit 6a53861

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/gatsby-link/index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export interface GatsbyLinkProps<TState> extends LinkProps<TState> {
2424
* This component is intended _only_ for links to pages handled by Gatsby. For links to pages on other
2525
* domains or pages on the same domain not handled by the current Gatsby site, use the normal `<a>` element.
2626
*/
27-
export class GatsbyLink<TState> extends React.Component<
27+
export class Link<TState> extends React.Component<
2828
GatsbyLinkProps<TState>,
2929
any
3030
> {}

0 commit comments

Comments
 (0)
Please sign in to comment.