Organizes a set of pages and shows one at a time
npm install @polymer/iron-pages


iron-pages is used to select one of its children to show. One use is to cycle
through a list of children "pages".
See: Documentation,
Demo.
```
npm install --save @polymer/iron-pages
`html`
Page 0
Page 1
Page 2
Page 3
`js
import {PolymerElement} from '@polymer/polymer/polymer-element.js';
import {html} from '@polymer/polymer/lib/utils/html-tag.js';
import '@polymer/iron-pages/iron-pages.js';
class ExampleElement extends PolymerElement {
static get template() {
return html
Page 0
Page 1
Page 2
Page 3
;
}
}
customElements.define('example-element', ExampleElement);
`
If you want to send a PR to this element, here are the instructions for running
the tests and demo locally:
`sh`
git clone https://github.com/PolymerElements/iron-pages
cd iron-pages
npm install
npm install -g polymer-cli
`sh`
polymer serve --npm
open http://127.0.0.1:
`sh``
polymer test --npm