9 lines
166 B
TypeScript
9 lines
166 B
TypeScript
import { useCopilotAction } from "@copilotkit/react-core";
|
|
|
|
useCopilotAction({
|
|
name: "noargs",
|
|
handler: async () => {
|
|
console.log("No args action");
|
|
},
|
|
});
|