diff --git a/src/components/Footer/Footer.stories.tsx b/src/components/Footer/Footer.stories.tsx index ed5f2e02..6e651a86 100644 --- a/src/components/Footer/Footer.stories.tsx +++ b/src/components/Footer/Footer.stories.tsx @@ -13,3 +13,4 @@ storiesOf('Footer', module) )) + .add('Without the social links', () => ) diff --git a/src/components/Footer/Footer.tsx b/src/components/Footer/Footer.tsx index 4151b93d..2252f8eb 100644 --- a/src/components/Footer/Footer.tsx +++ b/src/components/Footer/Footer.tsx @@ -30,6 +30,7 @@ export type FooterProps = { isFullscreen?: boolean className?: string isFullWidth?: boolean + hideSocialLinks?: boolean } export class Footer extends React.PureComponent { @@ -62,7 +63,8 @@ export class Footer extends React.PureComponent { i18n, isFullscreen, className, - isFullWidth + isFullWidth, + hideSocialLinks } = this.props let classes = 'dcl footer' @@ -97,20 +99,22 @@ export class Footer extends React.PureComponent { - - - - - - - - - - - - - - + {!hideSocialLinks ? ( + + + + + + + + + + + + + + + ) : null} © {new Date().getFullYear()} Decentraland