# Wrapper
> ./src/js/components/wrapper/wrapper.jsx

## Purpose
Everything that you want to put in the AdminLTE template will be placed in this component. It basically saves you the time of alternatively typing a `<div>` with a .wrapper class every single time.


__Takes Children__

* Expected Type - _All of the strings and elements_


## Example
```
import Wrapper from './src/js/components/wrapper/wrapper.jsx';

<Wrapper>
  {All of the AdminLTE style content and components reside here}
</Wrapper>
```
