17 lines
726 B
TypeScript
17 lines
726 B
TypeScript
/**
|
|
* App-specific render components — agent-renderable Block Kit cards authored
|
|
* with the `@copilotkit/channels-ui` JSX vocabulary.
|
|
*
|
|
* Each component is a plain `ComponentFn` returning a `<Message>` tree; its
|
|
* exported zod prop schema doubles as the render-tool input schema. Render a
|
|
* component with `renderSlackMessage(renderToIR(<IssueCard {...props} />))`.
|
|
*/
|
|
export { IssueCard, issueCardSchema } from "./issue-card.js";
|
|
export type { IssueCardProps } from "./issue-card.js";
|
|
|
|
export { IssueList, issueListSchema } from "./issue-list.js";
|
|
export type { IssueListProps } from "./issue-list.js";
|
|
|
|
export { PageList, pageListSchema } from "./page-list.js";
|
|
export type { PageListProps } from "./page-list.js";
|