mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
a9b2dbff75
Full RN 0.85.2 demo showing chat with useAgent, frontend tools (theme toggle, app mode), generative UI (pie chart), HITL (meeting scheduler), shared state (task manager), and thread management. Points to langgraph-py example runtime.
13 lines
305 B
JavaScript
13 lines
305 B
JavaScript
/**
|
|
* @format
|
|
*/
|
|
|
|
// CopilotKit polyfills — must be imported before any CopilotKit code
|
|
import "@copilotkit/react-native/polyfills";
|
|
|
|
import { AppRegistry } from "react-native";
|
|
import App from "./App";
|
|
import { name as appName } from "./app.json";
|
|
|
|
AppRegistry.registerComponent(appName, () => App);
|