# tableberg/1.1.5/src/blocks/index.ts

Tableberg – Simple Gutenberg Table Block, version 1.1.5. 22 lines.

- Page: https://pluginprobe.com/plugins/tableberg/1.1.5/code/src/blocks/index.ts
- Raw: https://pluginprobe.com/plugins/tableberg/1.1.5/raw/src/blocks/index.ts
- Modified: 2026-09-16T03:30:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/tableberg/1.1.5/code/src/blocks/index.ts#L10-L20`.

```typescript
import { registerNativeRowBlock } from "./row";
import { registerNativeCellBlock } from "./cell";
import { registerTextBlock } from "./text";
import { registerButtonBlock } from "./button";
import { registerImageBlock } from "./image";
import { registerListBlock } from "./list";
import { registerNativeTableBlock } from "./table";

/**
 * Registers all Tableberg blocks. Child blocks must register before the
 * table so its deprecated-entry migration can create them.
 */
export function registerNativeBlocks() {
    registerNativeRowBlock();
    registerNativeCellBlock();
    registerTextBlock();
    registerButtonBlock();
    registerImageBlock();
    registerListBlock();
    registerNativeTableBlock();
}

```
