2
0
Files
bot/packages/forge/blocks/calCom/index.ts

14 lines
378 B
TypeScript
Raw Normal View History

import { createBlock } from '@typebot.io/forge'
import { CalComLogo } from './logo'
import { bookEvent } from './actions/bookEvent'
import { baseOptions } from './baseOptions'
export const calComBlock = createBlock({
2024-09-12 13:54:09 +02:00
id: 'bls-cal',
name: 'BLS cal',
tags: ['calendar', 'scheduling', 'meetings'],
LightLogo: CalComLogo,
options: baseOptions,
actions: [bookEvent],
})