1.0.0 • Published 3 years ago

react-use-tawk v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

React Use Tawk

react integration for tawk.to

Tawk.to is a Web Chat platform that allows site users to communicate instantly with your business.

Installation

    /~$ npm install react-use-tawk

Usage

react-use-tawk should be used outside react hooks

this also works for Next.js

    import React from "react";
    import reactUseTawk from "react-use-tawk";

    const tawk_url = process.env.TAWK_URL;

    function App({props}) {

        reactUseTawk(tawk_url);

        return (
            <div>
            // code goes here
            </div>
        );

    }