## create_layout()


Create a new layout container.


Usage


``` python
create_layout(orientation="horizontal")
```


## Parameters


`orientation: str = ``"horizontal"`  
The layout orientation, by default "horizontal".


## Returns


`dict`  
A dictionary representing the created layout.


## Examples

``` python
>>> create_layout("vertical")
```

{'orientation': 'vertical', 'children': \[\]}
