const app = require('../app')
app.component('appTestPage', {
template: html`
Material Buttons
Hello World
Hello World
Hello World
Hello World
md-colors
{{::palette}}
md-colors="{ color: '{{palette + '-' + hue}}' }
`,
controllerAs: 'ctrl',
controller: function() {
this.palettes = ['primary', 'accent', 'warn', 'background']
this.hues = [100, 200, 300, 400, 500, 600, 700, 800, 900]
}
})