-
Notifications
You must be signed in to change notification settings - Fork 85
Feature / Download component #59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Super merci! @enguerranws |
| "./File": "./dist/File.js", | ||
| "./Download": "./dist/Download.js", | ||
| "./Display": "./dist/Display.js", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's automatically generated, you don't need to worry about that.
| import { fr } from "./fr"; | ||
| import { cx } from "./tools/cx"; | ||
| import { getLink } from "./link"; | ||
| import { RegisteredLinkProps } from "./link"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Always import types as type
| import { getLink } from "./link"; | ||
| import { RegisteredLinkProps } from "./link"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| import { getLink } from "./link"; | |
| import { RegisteredLinkProps } from "./link"; | |
| import { getLink, type RegisteredLinkProps } from "./link"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, just forgot to review my own PR
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No problem!
| details: string; | ||
| label: string; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thoses two can be ReactNode
No description provided.