0.0.1 • Published 6 years ago

@ctbucha/bs-react-cookie-consent v0.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

bs-react-cookie-consent

BuckleScript bindings for react-cookie-consent.

Installation

npm install --save @ctbucha/bs-react-cookie-consent

Then add @ctbucha/bs-react-cookie-consent to bs-dependencies in your bsconfig.json:

{
  ...
  "bs-dependencies": ["@ctbucha/bs-react-cookie-consent"]
}

Usage

/* App.re */
let component = ReasonReact.statelessComponent("App");

let make = _children => {
  ...component,
  render: _self =>
    <CookieConsent location="bottom">
      (ReasonReact.string("This website uses cookies to enhance the user experience."))
    </CookieConsent>,
};