Material design tabs
npm install @polymer/paper-tabs


makes it easy to explore and switch between different views or
functional aspects of an app, or to browse categorized data sets.
See: Documentation,
Demo.
```
npm install --save @polymer/paper-tabs
`html`
`js
import {PolymerElement} from '@polymer/polymer/polymer-element.js';
import {html} from '@polymer/polymer/lib/utils/html-tag.js';
import '@polymer/paper-tabs/paper-tabs.js';
import '@polymer/paper-tabs/paper-tab.js';
class ExampleElement extends PolymerElement {
static get template() {
return html
;
}
}
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/paper-tabs
cd paper-tabs
npm install
npm install -g polymer-cli
`sh`
polymer serve --npm
open http://127.0.0.1:
`sh``
polymer test --npm