Files
twenty_crm/packages/twenty-front/src/modules/activities/blocks/spec.ts
brendanlaschke 9def3d5b57 Activity editor add File block (#3146)
* - added file block

* fised auth useeffect

* - add cmd v for file block

* remove feature flag for attachment upload in blockeditor

---------

Co-authored-by: Lucas Bordeau <bordeau.lucas@gmail.com>
2024-01-05 17:42:50 +01:00

9 lines
175 B
TypeScript

import { defaultBlockSpecs } from '@blocknote/core';
import { FileBlock } from './FileBlock';
export const blockSpecs: any = {
...defaultBlockSpecs,
file: FileBlock,
};