# ``
Inserts separators between its children.
## Usage
Import:
```jsx
import {Group} from 'libreact/lib/Group';
```
Default separator is a space `" "`.
```jsx
Hello
world
```
Result:
```html
Hello world
```
Use custom separator.
```jsx
}>
Hello
world
```
Use `as` prop to specify wrapper element tag name.
```jsx
Hello
world
```
Pass through any props to the wrapper element.
```jsx
Hello
world
```