# blockspare/3.3.3/admin/components/Container.js

BlockSpare – Gutenberg Blocks for News, Magazine, Blog &amp; Business Websites, version 3.3.3. 12 lines.

- Page: https://pluginprobe.com/plugins/blockspare/3.3.3/code/admin/components/Container.js
- Raw: https://pluginprobe.com/plugins/blockspare/3.3.3/raw/admin/components/Container.js
- Modified: 2024-03-26T14:27:04+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/blockspare/3.3.3/code/admin/components/Container.js#L10-L20`.

```javascript
import React from 'react'

const Container = ({children}) => {
    return (
        <div className="blockspare-dashboard__container">
            {children}
        </div>
    )
}

export default Container

```
