-
Notifications
You must be signed in to change notification settings - Fork 82
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
fix(ffe-lists-react): export DetailListCardItem and fix its Props #1932
Conversation
Azure Static Web Apps: Your stage site is ready! Visit it here: https://black-beach-0d62d0d03-1932.westeurope.2.azurestaticapps.net |
@@ -93,6 +93,10 @@ declare class DescriptionListDescription extends React.Component< | |||
any | |||
> {} | |||
declare class DetailListCard extends React.Component< | |||
DescriptionListProps & React.ComponentProps<'dl'>, | |||
DetailListCardProps & React.ComponentProps<'dl'>, |
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.
DetailListCardProps & React.ComponentPropsWithoutRef<'dl'>,
any | ||
> {} | ||
declare class DetailListCardItem extends React.Component< | ||
DetailListCardItemProps & React.ComponentProps<'div'>, |
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.
DetailListCardItemProps & React.ComponentPropsWithoutRef<'div'>,
c55da85
to
5dbebfb
Compare
Tusen takk før att du retter dette! |
Azure Static Web Apps: Your stage site is ready! Visit it here: https://black-beach-0d62d0d03-1932.westeurope.2.azurestaticapps.net |
Motivasjon og kontekst
Manglet også DetailListCardItem. Og hadde brukt feil props for DetailListCard.