import Example from '../example';

const execute =
`window.__cmp('getConsentData', null, function(result){
	myLogger('getConsentData callback result: ' + JSON.stringify(result,null,2));
});`;

export default class ConsentData extends Example {
	constructor(props) {
		super(props);
		this.state = {
			title: 'Get Consent Data',
			execute,
		};
	}
}
