-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Export props types for navigation components
- Loading branch information
1 parent
9036981
commit 1739aca
Showing
2 changed files
with
17 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,13 @@ | ||
export { default as PointerButton } from './PointerButton'; | ||
export { default as Link } from './Link'; | ||
export { default as LinkBase } from './LinkBase'; | ||
export { default as LinkButton } from './LinkButton'; | ||
export { default as PointerButton } from './PointerButton'; | ||
export { default as Tab } from './Tab'; | ||
export { default as TabList } from './TabList'; | ||
|
||
export type { LinkProps } from './Link'; | ||
export type { LinkBaseProps } from './LinkBase'; | ||
export type { LinkButtonProps } from './LinkButton'; | ||
export type { PointerButtonProps } from './PointerButton'; | ||
export type { TabProps } from './Tab'; | ||
export type { TabListProps } from './TabList'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters