@ctbucha/bs-react-cookie-consent
v0.0.1
Published
BuckleScript bindings for react-cookie-consent.
Downloads
10
Maintainers
Readme
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>,
};