File

src/components/weather-forecast/forecast-simple-grid/forecast-chart-wide.component.ts

Metadata

changeDetection ChangeDetectionStrategy.OnPush
selector weather-forecast-chart-wide
styles
template
<div>

</div>

Inputs

forecast

Type: []

Constructor

constructor(helpers: WeatherHelpersService)
import {
  Component,
  ChangeDetectionStrategy,
  Input,
  Output,
  EventEmitter
} from '@angular/core';
import { Forecast } from '../../../services/api/weather.api.service';
import { WeatherHelpersService } from '../../../services/weather-helpers.service';

@Component({
  selector: 'weather-forecast-chart-wide',
  changeDetection: ChangeDetectionStrategy.OnPush,
  styles: [
    `
           `
  ],
  template: `
    <div>

    </div>

  `
})
export class WeatherForecastChartWideComponent {
  @Input() forecast: Forecast[];
  constructor(private helpers: WeatherHelpersService) {}
}
Legend
Html element
Component
Html element with directive

results matching ""

    No results matching ""