# Transition

## Props

- ***type***: string: slide-in, scale.
- ***direction***: string: up, down, left, right (currently only applicable to "slide-in.")


## JSX Usage

```
// Please note, a unique key MUST be passed to the element you would like to transition.
// To transition the element, change the key, and content. 
<Transition type="slide-in" direction="up">
    <div key={1}>
        Some content goes here.
    </div>
</Transition>

```
