5.0.1 • Published 4 years ago
react-revjet-tag v5.0.1
React RevJet Tag
RevJet content Tag for React.
Usage Example
import React from 'react'
import { RevJetTag, TagProperties } from 'react-revjet-tag'
export interface AppProps {}
export function App(_props: AppProps) {
    const tagProperties: TagProperties = {
		_tag: 'tagXXXX',
		_plc_id: '12345',
		_key: 'xxx',
		debug: 'emulate',
		_opts: {
			custom_domain: 'ads.revjet.com',
			autohide: true,
			responsive: true,
			responsive_height: 'dynamic',
			delivery_method: 'banner',
			_imp_banner_size: '640x480'
		},
		_custom_parameter: 'Custom Parameter'
	}
	return (
		<div>
			<RevJetTag tagProperties={tagProperties}/>
		</div>
	)
}