# tableberg/1.1.5/admin/src/components/BoxContent/BoxContentInc.jsx

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

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

```jsx
import React from "react";

/**
 * Box content inc component.
 *
 * @param {Object}            props          component properties
 * @param {Function | string} props.children component children
 */
function BoxContentInc({ children }) {
    return <div className={"tableberg-box-content-inc"}>{children}</div>;
}

/**
 * @module BoxContentInc
 */
export default BoxContentInc;

```
