# Group
A named group of components.
```jsx
import React, { Component } from 'react';
import { render, Window, App, Box, Group, TextInput } from 'proton-native';
class Example extends Component {
render() {
return (
);
}
}
render();
```
> Note: Group can only have one child. To have more than one child, use boxes.
## Props
* [enabled](#enabled)
* [visible](#visible)
* [margined](#margined)
* [title](#title)
## Reference
### enabled
Whether the Group is enabled.
| **Type** | **Required** | **Default** |
| -------- | ------------ | ----------- |
| bool | No | true |
### visible
Whether the Group can be seen.
| **Type** | **Required** | **Default** |
| -------- | ------------ | ----------- |
| bool | No | true |
### margined
Whether there is a margin inside the group.
| **Type** | **Required** | **Default** |
| -------- | ------------ | ----------- |
| bool | No | false |
### title
The name of the group.
| **Type** | **Required** | **Default** |
| -------- | ------------ | ----------- |
| string | No | '' |