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.
npm install --save react-famewall
import React from 'react'
import FamewallEmbed from 'react-famewall'
const App = () => {
return(
<FamewallEmbed
wallUrl="famewall"
/>
)
}
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}
/>
)
}
Use 'dualSliderMode' prop to enable testimonials to be displayed as a carousel
const App = () => {
return(
<FamewallEmbed
wallUrl="famewall"
cardTheme="light"
dualSliderMode={true}
/>
)
}
const App = () => {
return(
<FamewallEmbed
avatarCollectionId="<Place collection ID from dashboard>"
/>
)
}
MIT ©2021 Famewall