dashboard-page.js 220 B

12345678910111213
  1. const app = require('../app')
  2. app.component('appDashboardPage', {
  3. template: html`
  4. <app-user-area>
  5. Dashboard goes here
  6. </app-user-area>
  7. `,
  8. controllerAs: 'dashboard',
  9. controller: function() {
  10. }
  11. })