1. `npm i yalc -g` - local registry
2. `yalc publish` - start this command in root for publish package in yalc registry
3. `yalc add @dapperlabs/react-analytics` - start this command at the root to add a link to the package from the local register

# Test of basic methods

- To test the method `analyticsReady`, insert this construct into the home page and reload the page
    ```
      useEffect(() => {
        if (analyticsReady) {
          console.log('analyticsReady', analyticsReady);
        }
      }, [analyticsReady]);
    ```
- To test the method `trackPageView`, insert this construct into the home page and reload the page
   ```
      useEffect(() => {
        if (analyticsReady) {
          trackPageView()
        }
      }, [analyticsReady]);
    ```
- To test the method `track`, create a button and hang a handler with the method on it
   ```
     track('event name', { eventName: 'some event', ...other prop});
    ```
- To test the method `alias`, create a button and hang a handler with the method on it
   ```
     alias(1, 2);
    ```
- To test the method `identify`, create a button and hang a handler with the method on it
   ```
     identify(1, {event: 'some event'});
    ```
   
Result: All of the above methods except `analyticsReady` should be displayed in the Segment panel.

# Test blockedUserAgents
1. Go to the project and enter window in the Console tab of the developer `window?.navigator?.userAgent`
2. Find the `<AnalyticsProvider/>` in the project and insert the `blockedUserAgents` property as an array with the first element that is equal to the value from item one `blockedUserAgents={[userAgent]}`
3. Methods `track` and `identify` should not work (not displayed in the Segment panel)