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

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

- Page: https://pluginprobe.com/plugins/blockspare/2.7.1/code/admin/components/Container.js
- Raw: https://pluginprobe.com/plugins/blockspare/2.7.1/raw/admin/components/Container.js
- Modified: 2023-11-07T14:26:16+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/2.7.1/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

```
