Skip to content

Releases: zickt/react

@zickt/react v0.1.0

01 Mar 03:08

Choose a tag to compare

@zickt/react v0.1.0

The official React SDK for Zickt — add live chat, customer messaging, and support widgets to your React app.

Features

  • ZicktProvider — React context provider for app-wide Zickt integration
  • ZicktMessenger — Drop-in messenger component for simple usage
  • useZickt — Hook for programmatic control: show, hide, showNewMessage, update, getVisitorId, shutdown
  • Full TypeScript support with comprehensive type definitions
  • ESM and CommonJS builds with source maps
  • React 18 and React 19 support
  • Tree-shakeable, zero runtime dependencies

Install

npm install @zickt/react

Quick start

import { ZicktProvider, ZicktMessenger } from '@zickt/react';

function App() {
  return (
    <ZicktProvider appId="your-app-id">
      <ZicktMessenger />
    </ZicktProvider>
  );
}

Links