import { Component } from '@angular/core' import { DemoService } from '../../../demo/services/demo.service' @Component({ selector: 'app-home-index', template: `
Are you in trouble? Read our documentation with code samples.
Angular-Tabler works great with Firebase! Check the example and the source code
`, styles: [], }) export class HomeIndexComponent { constructor(public demoService: DemoService) {} }