VirtualFox0 / react-cookiehub-banner

React component to use cookie banner generated with https://www.cookiehub.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

React CookieHub Banner

With this React component you can integrate cookie banner from cookiehub.com

Configuration

Installation

npm:

npm install --save react-cookiehub-banner

dependencies: react-helmet

Example

import React from "react";
import CookieHubBanner from "react-cookiehub-banner";

class Application extends React.Component {
  render () {
    return (
        <div className="application">
            <CookieHubBanner 
                googleTrackingId="XX-XXXXXXXXX-X" 
                cookieHubId="XXXXXXXX"/>
        </div>
    );
  }
};

You can find the CookieHub ID within the script generated by CookieHub as part of the cookiehub url: https://cookiehub.net/cc/YOURCOOKIEHUBID.js

About

React component to use cookie banner generated with https://www.cookiehub.com/


Languages

Language:JavaScript 100.0%