Add storybook story for StructuredMetadataTable without key formatting

Signed-off-by: Boris Bera <beraboris@gmail.com>
This commit is contained in:
Boris Bera
2023-11-05 07:59:29 -05:00
parent 66071b42c0
commit 35be92c53e
@@ -71,3 +71,19 @@ export const NotDenseTable = () => (
</InfoCard>
</Wrapper>
);
export const WithoutKeyFormatting = () => (
<Wrapper>
<InfoCard
title="Structured Metadata Table without key formatting"
subheader="Wrapped in InfoCard"
>
<div style={cardContentStyle}>
<StructuredMetadataTable
metadata={metadata}
options={{ titleFormat: key => key }}
/>
</div>
</InfoCard>
</Wrapper>
);