New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

react-famewall

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-famewall

React Component for Famewall Embeds

  • 1.0.10
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
18
decreased by-78.82%
Maintainers
1
Weekly downloads
 
Created
Source

react-famewall

npm

React component for Famewall Embeds

Highlight and display social media mentions as beautiful testimonials. Enjoy the fame you receive from customers by signing up here.

Install

npm install --save react-famewall

Basic Usage

import React from 'react'
import FamewallEmbed from 'react-famewall'

const App = () => {

  return(
    <FamewallEmbed
      wallUrl="famewall"
    />
  )
}

Dynamic card color (For websites with Dark Mode/ Light Mode Switch)

Use the 'cardTheme' prop to dynamically feed in "light" or "dark" if you want the wall to be compatible with dynamic card color based on your website's theme


const App = () => {

  return(
    <FamewallEmbed
      wallUrl="famewall"
      cardTheme="dark"
    />
  )
}

const App = () => {

  return(
    <FamewallEmbed
      wallUrl="famewall"
      cardTheme="light"
    />
  )
}

Use 'carouselMode' prop to enable testimonials to be displayed as a carousel


const App = () => {

  return(
    <FamewallEmbed
      wallUrl="famewall"
      cardTheme="dark"
      carouselMode={true}
    />
  )
}

To enable autolooping of carousels use autoplay flag as boolean variable


const App = () => {

  return(
    <FamewallEmbed
      wallUrl="famewall"
      cardTheme="dark"
      carouselMode={true}
      autoplay={true}
    />
  )
}

Dual Slider Embed

Use 'dualSliderMode' prop to enable testimonials to be displayed as a carousel


const App = () => {

  return(
    <FamewallEmbed
      wallUrl="famewall"
      cardTheme="light"
      dualSliderMode={true}
    />
  )
}

Avatar Embed


const App = () => {

  return(
   <FamewallEmbed
      avatarCollectionId="<Place collection ID from dashboard>"
    />
  )
}

License

MIT ©2021 Famewall

FAQs

Package last updated on 29 Jun 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc