import { blocksRegistry } from "@levo-so/studio"; import * as components from "./blocks"; import * as schemas from "./schemas"; export { components }; export { schemas }; export const registerLibrary = () => { blocksRegistry.registerBlocksToStudio(schemas.BlockList); blocksRegistry.registerCategoriesToStudio(schemas.BlockCategoryList); };