Expando example:

```js
	<div>
		<Expando title="Hello" description="Execute core competencies so that as an end result, we make users into">
			<div>
				<P>Leverage agile frameworks to provide a robust synopsis for high level overviews. Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition. Organically grow the holistic world view of disruptive innovation via workplace diversity and empowerment.</P>
			</div>
		</Expando>
		<Expando title="Hello" description="Execute core competencies so that as an end result, we make users into">
			<div>
				<P>Leverage agile frameworks to provide a robust synopsis for high level overviews. Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition. Organically grow the holistic world view of disruptive innovation via workplace diversity and empowerment.</P>
			</div>
		</Expando>
	</div>
```
Expando without description:
```js
	<div>
		<Expando title="Hello">
			<div>
				<P>Keeping it simple with no description</P>
			</div>
		</Expando>
	</div>
```

Expando open by default
```js
	<div>
		<Expando title="Hello" openByDefault>
			<div>
				<P>You can see me straight away!!</P>
			</div>
		</Expando>
	</div>
```
