Notes
yoembed is a reack SDK.
Any react app can integrate the yoembed sdk into their application and create an embeddable import button. Please look into the sample Importer App to know about the usage of yoembed-react-sdk.
Install
- Using NPM
npm i yoembed
- Using Yarn
yarn add yoembed
The yoembed-react-sdk connects the YoBulk backend and data engine to the react app through the
yoHostUrl
and importerId
variables passed to yoembed-react-sdk. The button name is configured through btnText
property
import { YoButton } from "yoembed";
<YoButton
btnText="Import CSV"
importerId={configId}
yoHostUrl={"http://localhost:3000"}
/>;