dashboard-page.js 265 B

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