@socialshares/react
v0.0.22
Published
Social share buttons
Downloads
11
Maintainers
Readme
⚡️ Quick start
You can install via npm:
npm install @socialshares/react
Then import into your React project:
import {
ShareButton,
TwitterButton,
FacebookButton,
} from '@socialshares/react';
export default function App() {
return (
<ShareButtons>
<TwitterButton />
<FacebookButton />
</ShareButtons>
);
}
Done! You should see a Tweet button and Facebook button rendered.
Check out the socialshares docs for more.