# Container/Section
> Props: container-section.props.txt
## Examples
### Base
```tsx
{
render: args => {
return
;
}
}
```
### Multiple Section
```tsx
{
render: () => {
return ;
}
}
```
### Multiple Section No Margin
```tsx
{
render: () => {
return ;
}
}
```
### Padding Zero
```tsx
{
render: args => {
return ;
},
args: {
padding: 0
}
}
```
### Padding Zero Mobile
```tsx
{
render: args => {
return ;
},
args: {
padding: 0
}
}
```
### Responsive Desktop
```tsx
{
render: () => {
return ;
}
}
```
### Responsive Desktop No Margin
```tsx
{
render: () => {
return ;
}
}
```
### Responsive Mobile
```tsx
{
render: args => {
return ;
}
}
```
### Responsive Mobile No Margin
```tsx
{
render: args => {
return ;
}
}
```