GiovChat in React Native apps.
The same workspace that powers your website widget can open inside a native app, so mobile conversations join the same inbox.

Package
pnpm add @fegig/giovchat-rn
Modal launcher
import { useState } from "react";
import { Button, View } from "react-native";
import { GiovChat } from "@fegig/giovchat-rn";
export function SupportButton() {
const [open, setOpen] = useState(false);
return (
<View>
<Button title="Chat with us" onPress={() => setOpen(true)} />
<GiovChat
tenantKey="YOUR_TENANT_KEY"
visible={open}
onClose={() => setOpen(false)}
/>
</View>
);
}What you ship
- pnpm add @fegig/giovchat-rn
- Pass tenantKey from the dashboard — not a made-up user token
- Modal by default, or mode="fullscreen" for a chat screen
- Optional contact object so known users skip pre-chat fields

Start free. Grow when your queue does.
Live chat, a shared inbox, and GiovBot in one workspace.
