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