### `ModernTabContainer`

*Note: use with `<ModernTabContent />` as your list of children*

Renders the top tabs and handles the state of which of them is open. It is important that the text items are in the same order as the `ModernTabContent` children.

Props:

* array `tabTitles` (required) - an array of strings which are the titles of the tabs, in the order you'd like them rendered.
* function returning a React component `IconComponent` - if there, this will render an icon off to the right of the tab box
* React elements `children` - the children to pass in - this is your list of `ModernTabContent` components (see below)
### `ModernTabContent`

*Note: use with `<ModernTabContainer />`*

Individual list items which handle the style and action taken on click. Pass these into `ModernTabContainer` as children.

Props:

* `children` - the content of the tab
