# tableberg/1.1.5/admin/src/components/ButtonLinkGroup.jsx

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

- Page: https://pluginprobe.com/plugins/tableberg/1.1.5/code/admin/src/components/ButtonLinkGroup.jsx
- Raw: https://pluginprobe.com/plugins/tableberg/1.1.5/raw/admin/src/components/ButtonLinkGroup.jsx
- 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/admin/src/components/ButtonLinkGroup.jsx#L10-L20`.

```jsx
import React from "react";

/**
 * Button link group component.
 *
 * @param {Object}   props          component properties
 * @param {Function} props.children component children
 * @class
 */
function ButtonLinkGroup({ children }) {
    return <div className={"tableberg-button-link-group"}>{children}</div>;
}

/**
 * @module ButtonLinkGroup
 */
export default ButtonLinkGroup;

```
