Yarn:
yarn add react-social-bar
Npm:
npm install react-social-bar
This project was bootstrapped using create-react-app and react-storybook
The easiest way to get started is to clone this repo and run yarn start
Once react-social-bar
is installed. Import it into your file
`import SocialBar from 'react-social-bar';
return (
<SocialBar config={ configObj } />
);
const configObj = {
description: string (required),
domain: string (required),
handleClick: function (required),
hideBelowWidth: number (optional),
mediaUrl: string (optional),
productName: string (required),
twitterHandle: string (optional)
}
const configObj = {
description: 'NameSquash: An easy way to name your next side project or business',
domain: 'https://namesquash.com',
handleClick: (social) => console.log('clicked:', social),
hideBelowWidth: 1038,
mediaUrl: 'https://namesquash.com/images/namesquashapp.png',
productName: 'NameSquash',
twitterHandle: 'namesquash'
}