@vouchpanel/react
v1.0.3
Published
Embed tweet and testimonials into your react project.
Downloads
3
Maintainers
Readme
@vouchpanel/react
Quickly embed a vouchpanel into your React project.
How To Use
If you are using React as a Direct <script> Include
, please go to link.
If you are using React as a SPA use the instructions below.
Install with yarn (or npm install
):
yarn add @vouchpanel/react
Include it as a JSX element:
import Wall from "@vouchpanel/react";
const MyWall = (props: {}) => {
return (
<div>
<Wall id={4}></Wall>
</div>
);
};