(props: ButtonProps<TValue>)
| 177 | export const Cell = intrinsic<CellProps>("cell"); |
| 178 | |
| 179 | export function Button<TValue = unknown>(props: ButtonProps<TValue>): BotNode { |
| 180 | return { type: "button", props: props as unknown as Record<string, unknown> }; |
| 181 | } |
| 182 | export function Select(props: SelectProps): BotNode { |
| 183 | return { type: "select", props: props as unknown as Record<string, unknown> }; |
| 184 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…