Skip to content

Commit

Permalink
fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup!…
Browse files Browse the repository at this point in the history
… fixup! Feat(web-react): Introduce Footer component #DS-1368
  • Loading branch information
pavelklibani committed Sep 24, 2024
1 parent 5904899 commit 5db28cd
Showing 1 changed file with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@ import { UNSTABLE_ProductLogo } from '../../../src/components/UNSTABLE_ProductLo
import { defaultSvgLogo } from '../../../src/components/UNSTABLE_ProductLogo/demo/ProductLogoDefault';
import { GridColumns } from '../../../src/types';

type FooterCompositionsProps = {
headingsWithLink: boolean;
nestedLinkBlocks: boolean;
numberOfLinkColumns: GridColumns;
showDividers: boolean;
showLanguageSwitch: boolean;
showSecondaryLinks: boolean;
showSocialMediaButtons: boolean;
};

export default {
title: 'Examples/Compositions',
argTypes: {
Expand Down Expand Up @@ -79,7 +89,7 @@ export default {
},
};

export const FooterCompositions = (args) => {
export const FooterCompositions = (args: FooterCompositionsProps) => {
const {
headingsWithLink,
nestedLinkBlocks,
Expand Down

0 comments on commit 5db28cd

Please sign in to comment.