# Container/TopNavigation
> Props: container-topnavigation.props.txt
## Examples
### Base
```tsx
{
render: () =>
} title='Title' rightContent={Label} />
} title='Title' rightContent={Label} />
}
```
### Empty Right
```tsx
{
args: {
leftContent: ,
title: 'Title'
}
}
```
### Long Title
```tsx
{
render: () =>
} title='Long Title Long Title Long Title Long Title Long Title Long Title' rightContent={Label} />
}
```
### Multiple
```tsx
{
args: {
leftContent: <>
Label
>,
title: 'Title',
rightContent: <>
Label
>
}
}
```
### Only Left
```tsx
{
args: {
leftContent:
}
}
```
### Only Right
```tsx
{
args: {
rightContent: Label
}
}
```
### Only Title
```tsx
{
args: {
title: 'Title'
}
}
```