1.0.3 • Published 3 years ago

@vouchpanel/react v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

@vouchpanel/react

Package Version Open Issues Build Status Coverage Status Dependencies Status Dev Dependencies Status Commitizen Friendly

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>
  );
};