Banner UI React
React specific wrapper for @heartlandone/banner-ui
To install banner-ui-react, you must ensure that the installed react version is as follows
"peerDependencies": {
"react": ">=16.7.0",
"react-dom": ">=16.7.0"
}
To install Banner UI using REACT, run the following command prompt in your terminal:
npm install @heartlandone/banner-ui-react
Usage
Include the follwing lines in your React file(s)
import { /** <Component> */ } from '@heartlandone/banner-ui-react';
React Example Usage
import { MyAccountCompagin } from '@heartlandone/banner-ui-react';
//......
//......
render() {
return (
<MyAccountCompagin access-token="token content" env="DEV|STAGE|PROD"></MyAccountCompagin>
);
}