Spaces:
Running
Running
| import { registerBlocks } from './registry'; | |
| import { WEB_BLOCKS } from './web'; | |
| import { ELECTRON_BLOCKS } from './electron'; | |
| import { MAUI_BLOCKS } from './maui'; | |
| import { NODEJS_BLOCKS } from './nodejs'; | |
| export function initializeBlocks(): void { | |
| registerBlocks(WEB_BLOCKS); | |
| registerBlocks(ELECTRON_BLOCKS); | |
| registerBlocks(MAUI_BLOCKS); | |
| registerBlocks(NODEJS_BLOCKS); | |
| } | |