ui-humix-lib
Version:
A simple package for implementinghumix design components in react-based or node.js based projects.
28 lines (17 loc) • 641 B
Markdown
Note: Unstable. Still in development.
This package simplifies the implementation of Ezoic ads into your web project.
```bash
npm install ezoic-ads
```
In your client-side JavaScript code, import and call the function to load the Ezoic script:
```javascript
import loadEzoicScript from 'ezoic-ads';
// Load the default Ezoic script
loadEzoicScript();
// To specify a custom script URL, replace 'your_custom_version' with the version number or specific identifier provided by Ezoic. For example:
loadEzoicScript('//www.ezojs.com/standalone.js?cb=12345');
```