Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@doodle/components / structure / ProductFooter / ProductFooter.md
Size: Mime:
const defaultProps = {
  variant: 'light',
};

<div>
  <p>Light variant:</p>
  <ProductFooter
  />

  <p>Light variant with custom handler for Privacy Settings link:</p>
  <ProductFooter onClickPrivacySettings={() => window.alert('"Privacy Settings" link was clicked!')} 
  />

  <p>Dark variant:</p>
  <ProductFooter
    variant="dark"
  />
</div>